BackForward compat for spelling error...

interface ShouldOverideUrlLoadEventData {
    cancel?: boolean;
    error?: string;
    eventName: ShouldOverrideUrlLoading;
    httpMethod: string;
    navigationType?: NavigationType;
    object: WebViewExtBase;
    url: string;
}

Hierarchy (View Summary)

Properties

cancel?: boolean

Flip this to true in your callback, if you want to cancel the url-loading

error?: string

Gets the error (if any).

The name of the event.

httpMethod: string
navigationType?: NavigationType

Gets the navigation type of the web-view.

The Observable instance that has raised the event.

url: string

Gets the url of the web-view.