| 7 | export type NoteFolder = "inbox" | "quick" | "archive" | "trash"; |
| 8 | |
| 9 | export interface ZenNote { |
| 10 | path: string; |
| 11 | title: string; |
| 12 | folder: NoteFolder; |
| 13 | updatedAt: number; |
| 14 | tags: string[]; |
| 15 | hasAttachments: boolean; |
| 16 | excerpt: string; |
| 17 | } |
| 18 | |
| 19 | export interface LoadError { |
| 20 | title: string; |
nothing calls this directly
no outgoing calls
no test coverage detected