blessed-components - v1.20.0
    Preparing search index...

    Interface PageHandle

    Imperative handle returned by page.

    interface PageHandle {
        body: BoxElement;
        footer: BoxElement;
        header: BoxElement;
        layout(): void;
        element: BoxElement;
        destroy(): void;
        setData(data: PageData): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    body: BoxElement

    Main body element where callers can append child widgets.

    footer: BoxElement

    Footer element.

    header: BoxElement

    Header element.

    element: BoxElement

    Underlying Blessed element available for standard element operations.

    Methods