interface WebPromptEventData {
    callback: (response?: string) => void;
    defaultText?: string;
    eventName: WebPrompt;
    message: string;
    object: WebViewExtBase;
    url: string;
}

Hierarchy (View Summary)

Properties

callback: (response?: string) => void
defaultText?: string
eventName: WebPrompt

The name of the event.

message: string

The Observable instance that has raised the event.

url: string