interface NoteEntry {
    entryType: "note";
    markdown: null | string;
    noteId: string;
    text: string;
    [k: string]: unknown;
}

Indexable

[k: string]: unknown

Properties

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

Generated using TypeDoc