A single note entry returned by GET /export
| 5 | |
| 6 | /** A single note entry returned by GET /export */ |
| 7 | interface 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 */ |
| 17 | interface ExportData { |
nothing calls this directly
no outgoing calls
no test coverage detected