mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-09 09:42:28 +08:00
37 lines
795 B
TypeScript
37 lines
795 B
TypeScript
![]() |
export interface AttachmentRow {
|
||
|
attachmentId?: string;
|
||
|
ownerId: string;
|
||
|
role: string;
|
||
|
mime: string;
|
||
|
title?: string;
|
||
|
position?: number;
|
||
|
blobId: string;
|
||
|
isProtected?: boolean;
|
||
|
dateModified?: string;
|
||
|
utcDateModified?: string;
|
||
|
utcDateScheduledForErasureSince?: string;
|
||
|
contentLength?: number;
|
||
|
}
|
||
|
|
||
|
export interface RevisionRow {
|
||
|
revisionId: string;
|
||
|
noteId: string;
|
||
|
type: string;
|
||
|
mime: string;
|
||
|
isProtected: boolean;
|
||
|
title: string;
|
||
|
blobId: string;
|
||
|
dateLastEdited: string;
|
||
|
dateCreated: string;
|
||
|
utcDateLastEdited: string;
|
||
|
utcDateCreated: string;
|
||
|
utcDateModified: string;
|
||
|
contentLength?: number;
|
||
|
}
|
||
|
|
||
|
export interface RecentNoteRow {
|
||
|
noteId: string;
|
||
|
notePath: string;
|
||
|
utcDateCreated?: string;
|
||
|
}
|