-
Notifications
You must be signed in to change notification settings - Fork 0
/
module1.js
50 lines (46 loc) · 1.08 KB
/
module1.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { BrowserModule } from '@angular/platform-browser';
import { Component, NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
class HelloComponent {
constructor() { }
/**
* @return {?}
*/
ngOnInit() {
}
}
HelloComponent.decorators = [
{ type: Component, args: [{
template: `"Hello from External Component`
},] },
];
/**
* @nocollapse
*/
HelloComponent.ctorParameters = () => [];
const appRoutes = [
{ path: '', component: HelloComponent, pathMatch: 'full' }
];
class AppModule1 {
}
AppModule1.decorators = [
{ type: NgModule, args: [{
declarations: [
HelloComponent
],
imports: [
RouterModule.forChild(appRoutes),
BrowserModule
],
providers: []
},] },
];
/**
* @nocollapse
*/
AppModule1.ctorParameters = () => [];
/**
* Generated bundle index. Do not edit.
*/
export { AppModule1, HelloComponent as ɵa };
//# sourceMappingURL=module1.js.map