Interface OpenExternalUrlRequestPayload

Payload object for opening an external URL.

interface OpenExternalUrlRequestPayload {
    options?: string;
    target?: "_self" | "_blank";
    url: string;
}

Properties

Properties

options?: string

Additional options for opening the URL.

target?: "_self" | "_blank"

The target where the URL should be opened. Defaults to '_blank'.

url: string

The URL to open.