@nota/nativescript-webview-ext
Version:
Extended WebView for NativeScript which adds 'x-local' scheme for local-files. events between WebView and native-layer, javascript execution, injecting CSS and JS-files.
14 lines (12 loc) • 466 B
TypeScript
/// <reference path="../../node_modules/@nativescript/types-android/lib/android-28.d.ts" />
declare namespace dk {
export namespace nota {
export namespace webviewinterface {
export class WebViewBridgeInterface {
public emitEvent(param0: string, param1: string): void;
public emitEventToNativeScript(param0: string, param1: string): void;
public constructor();
}
}
}
}