Trevixal API
    Preparing search index...

    Interface WorkspacePanelOptions

    interface WorkspacePanelOptions {
        ariaLabel?: string;
        confirm?: (
            message: string,
            meta: DocumentMeta,
        ) => boolean | Promise<boolean>;
        container: HTMLElement;
        promptText?: PromptText;
        recentLimit?: number;
        showFavorites?: boolean;
        showRecent?: boolean;
    }
    Index
    ariaLabel?: string
    confirm?: (message: string, meta: DocumentMeta) => boolean | Promise<boolean>

    Veto a delete. Defaults to allowing it.

    container: HTMLElement
    promptText?: PromptText

    Ask for a name. Defaults to window.prompt.

    recentLimit?: number

    How many recents to list (default 5).

    showFavorites?: boolean

    Show the favorites section (default true).

    showRecent?: boolean

    Show the recently opened section (default true).