MCPcopy Index your code
hub / github.com/ZenNotes/zennotes / ZenNote

Interface ZenNote

integrations/raycast/src/lib/zen.ts:9–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7export type NoteFolder = "inbox" | "quick" | "archive" | "trash";
8
9export 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
19export interface LoadError {
20 title: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected