Trevixal API
    Preparing search index...

    Interface FullEditorLayout

    Every element the editor's parts attach to, built once and handed out.

    interface FullEditorLayout {
        chrome: HTMLElement;
        editor: HTMLElement;
        goal: HTMLElement;
        history: HTMLElement;
        mirror: HTMLElement;
        offline: HTMLElement;
        outline: HTMLElement;
        output: HTMLElement | null;
        panels: readonly HTMLElement[];
        review: HTMLElement;
        root: HTMLElement;
        saveStatus: HTMLElement;
        security: HTMLElement;
        shell: HTMLElement;
        sidebar: HTMLElement;
        split: HTMLElement;
        tabs: HTMLElement;
        toc: HTMLElement;
        uploadStatus: HTMLElement;
        workspace: HTMLElement;
        destroy(): void;
    }
    Index
    chrome: HTMLElement
    editor: HTMLElement
    goal: HTMLElement
    history: HTMLElement
    mirror: HTMLElement
    offline: HTMLElement
    outline: HTMLElement
    output: HTMLElement | null

    The serialized-HTML readout, or null when showSerializedHTML is off.

    panels: readonly HTMLElement[]

    The four sidebar sections, in the order they appear.

    review: HTMLElement
    root: HTMLElement
    saveStatus: HTMLElement
    security: HTMLElement
    shell: HTMLElement
    sidebar: HTMLElement
    split: HTMLElement
    tabs: HTMLElement
    toc: HTMLElement
    uploadStatus: HTMLElement
    workspace: HTMLElement
    • Empty the host and put back the classes it arrived with.

      Returns void