Interface Dom

Interface for DOM functionality

interface Dom {
    document: Document;
    window: Window;
    topbar(show?: boolean): Promise<void>;
}

Properties

Methods

Properties

document: Document

Get the document instance

window: Window

Get the window instance

Methods

  • Toggle or set the topbar visibility

    Parameters

    • Optionalshow: boolean

      Optional boolean to set visibility state

    Returns Promise<void>