mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
15 lines
433 B
TypeScript
15 lines
433 B
TypeScript
import { WebView } from ".";
|
|
import { EventData } from "../core/view";
|
|
|
|
export type NavigationType = "linkClicked" | "formSubmitted" | "backForward" | "reload" | "formResubmitted" | "other" | undefined;
|
|
|
|
export interface LoadEventData extends EventData {
|
|
url: string;
|
|
navigationType: NavigationType;
|
|
error: string;
|
|
}
|
|
|
|
export interface WebViewClient {
|
|
new(owner: WebView): any /* android.webkit.WebViewClient */;
|
|
}
|