Trevixal API
    Preparing search index...

    Interface FullscreenToggleOptions

    interface FullscreenToggleOptions {
        container?: HTMLElement;
        label?: string;
        onChange?: (fullscreen: boolean) => void;
        target?: HTMLElement;
    }
    Index
    container?: HTMLElement

    Where the button is appended. Omit to build the button without mounting it, and place toggle.element yourself.

    label?: string
    onChange?: (fullscreen: boolean) => void

    Called after every state change, with the new state.

    target?: HTMLElement

    The element that goes fullscreen: usually the wrapper around the chrome and the content. Defaults to the view's parent.