export type NotesDataOptions = { dir: string link: string include?: string | string[] exclude?: string | string[] notes: NotesItem[] } export type NotesItem = { dir: string link: string text: string sidebar?: NotesSidebar | 'auto' } export type NotesSidebar = (NotesSidebarItem | string)[] export type NotesSidebarItem = { text?: string link?: string dir?: string collapsed?: boolean items?: NotesSidebar icon?: string } export type NotesData = Record