@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.
20 lines (16 loc) • 514 B
JavaScript
import { NgModule } from '@angular/core';
import { isKnownView, registerElement } from '@nativescript/angular';
const webviewElementName = "WebViewExt";
if (!isKnownView(webviewElementName)) {
registerElement(webviewElementName, () => require("@nota/nativescript-webview-ext").WebViewExt);
}
class WebViewExtModule {
}
WebViewExtModule.decorators = [
{ type: NgModule }
];
/**
* Generated bundle index. Do not edit.
*/
export { WebViewExtModule };
//# sourceMappingURL=nota-webview-ext-angular.js.map