File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
import { NO_ERRORS_SCHEMA , NgModule } from '@angular/core' ;
2
2
3
- import { WebViewExtModule } from '@nativescript-community/ui-webview/angular' ;
3
+ import { AWebViewModule } from '@nativescript-community/ui-webview/angular' ;
4
4
import { BasicExampleComponent } from './basic-example/basic-example.component' ;
5
5
6
6
export const COMPONENTS = [ BasicExampleComponent ] ;
7
7
@NgModule ( {
8
- imports : [ WebViewExtModule ] ,
9
- exports : [ WebViewExtModule ] ,
8
+ imports : [ AWebViewModule ] ,
9
+ exports : [ AWebViewModule ] ,
10
10
schemas : [ NO_ERRORS_SCHEMA ]
11
11
} )
12
12
export class InstallModule { }
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ if (!isKnownView(webviewElementName)) {
8
8
registerElement ( webviewElementName , ( ) => AWebView ) ;
9
9
}
10
10
11
- @NgModule ( )
12
- export class AWebViewModule {
13
- imports : [ NativeScriptCommonModule ] ;
14
- }
11
+ @NgModule ( {
12
+ imports : [ NativeScriptCommonModule ]
13
+ } )
14
+ export class AWebViewModule { }
You can’t perform that action at this time.
0 commit comments