diff --git a/src/lib/logseq-format.ts b/src/lib/logseq-format.ts index b73b914..83a1423 100644 --- a/src/lib/logseq-format.ts +++ b/src/lib/logseq-format.ts @@ -15,7 +15,7 @@ interface ExportNote { contentPlain: string | null; properties: Record; tags: { tag: { name: string } }[]; - children?: ExportNote[]; + children?: { title: string }[]; attachments?: { file: { storageKey: string; filename: string } ; caption: string | null }[]; }