export interface NoteFrontmatter { title: string; category: string; tags: string[]; created: string; updated: string; mentions: string[]; } export interface Note { id: string; filePath: string; date: string; frontmatter: NoteFrontmatter; content: string; rawContent: string; } export interface NoteEntry { time: string; category: string; title: string; content: string; tags: string[]; mentions: string[]; } export interface CreateNoteOptions { date?: string; category?: string; title: string; content: string; tags?: string[]; } export interface AppendNoteOptions { date?: string; category?: string; title?: string; content: string; tags?: string[]; } export interface DailySummary { date: string; entries: NoteEntry[]; categories: Record; tags: string[]; mentions: string[]; } //# sourceMappingURL=types.d.ts.map