Skip to content

Options🔗

Definition🔗

export interface Options {
    keepTime: boolean;
    includeVars: boolean;
    showStarred: boolean;
    showRecentlyViewed: boolean;
    showSearch: boolean;
    showHeadings: boolean;
    showFolderNames: boolean;
    maxItems: number;
    query: string;
    tags: string[];
    // folderId is deprecated, and migrated to folderUid on panel init
    folderId?: number;
    folderUID?: string;
}