16 lines
375 B
JavaScript
16 lines
375 B
JavaScript
|
// #docplaster
|
||
|
// #docregion
|
||
|
(function(app) {
|
||
|
app.AppModule =
|
||
|
ng.core.NgModule({
|
||
|
imports: [ ng.platformBrowser.BrowserModule ],
|
||
|
// #docregion import
|
||
|
declarations: [ app.AppComponent ],
|
||
|
// #enddocregion import
|
||
|
bootstrap: [ app.AppComponent ]
|
||
|
})
|
||
|
.Class({
|
||
|
constructor: function() {}
|
||
|
});
|
||
|
})(window.app || (window.app = {}));
|