MCPcopy Index your code
hub / github.com/Gentleman-Programming/engram / ExportNote

Interface ExportNote

plugin/obsidian/src/sync.ts:7–14  ·  view source on GitHub ↗

A single note entry returned by GET /export

Source from the content-addressed store, hash-verified

5
6/** A single note entry returned by GET /export */
7interface ExportNote {
8 /** Relative path inside the vault subfolder, e.g. "engram/architecture/my-note-42.md" */
9 path: string;
10 /** Full markdown content of the note */
11 content: string;
12 /** If true, this note should be deleted from the vault */
13 deleted: boolean;
14}
15
16/** Full response body from GET /export */
17interface ExportData {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected