mirror of
https://github.com/zadam/trilium.git
synced 2025-12-21 23:59:59 +01:00
chore(server): fix some type errors
This commit is contained in:
@@ -126,17 +126,17 @@ export type NoteType = (typeof ALLOWED_NOTE_TYPES)[number];
|
||||
|
||||
export interface NoteRow {
|
||||
noteId: string;
|
||||
deleteId: string;
|
||||
deleteId?: string;
|
||||
title: string;
|
||||
type: NoteType;
|
||||
mime: string;
|
||||
isProtected: boolean;
|
||||
isDeleted: boolean;
|
||||
blobId: string;
|
||||
dateCreated: string;
|
||||
dateModified: string;
|
||||
utcDateCreated: string;
|
||||
utcDateModified: string;
|
||||
isProtected?: boolean;
|
||||
isDeleted?: boolean;
|
||||
blobId?: string;
|
||||
dateCreated?: string;
|
||||
dateModified?: string;
|
||||
utcDateCreated?: string;
|
||||
utcDateModified?: string;
|
||||
content?: string | Buffer;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user