chore(LINT-0001) fix lint errors
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user