mirror of
https://gitlab.com/ArkHost/HelixNotes.git
synced 2026-07-24 07:45:57 +02:00
v1.2.5 - calendar view for daily notes, trash notebook restore, attachment/link fixes
This commit is contained in:
+14
-1
@@ -14,6 +14,18 @@ export interface NoteEntry {
|
||||
preview: string;
|
||||
}
|
||||
|
||||
export interface TrashNotebookEntry {
|
||||
name: string;
|
||||
path: string;
|
||||
note_count: number;
|
||||
modified: string;
|
||||
}
|
||||
|
||||
export interface TrashContents {
|
||||
notes: NoteEntry[];
|
||||
notebooks: TrashNotebookEntry[];
|
||||
}
|
||||
|
||||
export interface NotebookEntry {
|
||||
name: string;
|
||||
path: string;
|
||||
@@ -131,4 +143,5 @@ export type ViewMode =
|
||||
| "tag"
|
||||
| "trash"
|
||||
| "search"
|
||||
| "quickaccess";
|
||||
| "quickaccess"
|
||||
| "daily";
|
||||
|
||||
Reference in New Issue
Block a user