chore(LINT-0001) fix lint errors

This commit is contained in:
Giancarmine Salucci
2026-03-27 03:01:37 +01:00
parent 7f7d806172
commit da661efc91
24 changed files with 114 additions and 69 deletions

View File

@@ -124,7 +124,7 @@ export class CodeListItemDto {
}
export class CodeSnippetJsonDto {
type: 'code' = 'code';
readonly type = 'code' as const;
title: string | null;
description: string | null;
language: string | null;
@@ -147,7 +147,7 @@ export class CodeSnippetJsonDto {
}
export class InfoSnippetJsonDto {
type: 'info' = 'info';
readonly type = 'info' as const;
text: string;
breadcrumb: string | null;
pageId: string;