en-api
Version:
This module establishes communication with the state manager api.
36 lines (31 loc) • 868 B
JavaScript
import { Component, NgModule } from '@angular/core';
var Box = /** @class */ (function () {
function Box() {
}
Box.decorators = [
{ type: Component, args: [{
selector: 'box',
template: '<h1> Hello world </h1>'
},] },
];
/** @nocollapse */
Box.ctorParameters = function () { return []; };
return Box;
}());
var BoxModule = /** @class */ (function () {
function BoxModule() {
}
BoxModule.decorators = [
{ type: NgModule, args: [{
declarations: [Box],
exports: [Box]
},] },
];
/** @nocollapse */
BoxModule.ctorParameters = function () { return []; };
return BoxModule;
}());
/**
* Generated bundle index. Do not edit.
*/
export { Box as ɵa, BoxModule };