Documentation
    Preparing search index...

    Interface WindowManagerHooks

    Hook for window management.

    interface WindowManagerHooks {
        createWindow(
            options: { class: string; iframeSrc?: string; title: string },
        ): string | null;
    }
    Index

    Methods

    Methods

    • Create a new window. Returns the window ID or null on failure.

      Parameters

      • options: { class: string; iframeSrc?: string; title: string }

      Returns string | null