interface NoteEntry {
    entryType: "note";
    markdown: null | string;
    noteId: string;
    text: string;
}

Properties

entryType: "note"
markdown: null | string
noteId: string
text: string

Generated using TypeDoc