Interface OpenWebViewAlwaysOnTop

Payload object for opening a web view that is always on top.

interface OpenWebViewAlwaysOnTop {
    modal_settings: { height: number; width: number; x: number; y: number };
    url: string;
}

Properties

Properties

modal_settings: { height: number; width: number; x: number; y: number }

Settings for the modal window.

Type declaration

  • height: number

    The height of the modal window.

  • width: number

    The width of the modal window.

  • x: number

    The x-coordinate of the modal window.

  • y: number

    The y-coordinate of the modal window.

url: string

The URL to open in the web view.