@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) • 460 B
TypeScript
/// <reference path="../../node_modules/tns-platform-declarations/android-27.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();
}
}
}
}