ionic-angular
Version:
A powerful framework for building mobile and progressive web apps with JavaScript and Angular 2
39 lines • 783 B
JavaScript
import { NgModule } from '@angular/core';
import { Label } from './label';
/**
* @hidden
*/
export class LabelModule {
/**
* @return {?}
*/
static forRoot() {
return {
ngModule: LabelModule, providers: []
};
}
}
LabelModule.decorators = [
{ type: NgModule, args: [{
declarations: [
Label
],
exports: [
Label
]
},] },
];
/**
* @nocollapse
*/
LabelModule.ctorParameters = () => [];
function LabelModule_tsickle_Closure_declarations() {
/** @type {?} */
LabelModule.decorators;
/**
* @nocollapse
* @type {?}
*/
LabelModule.ctorParameters;
}
//# sourceMappingURL=label.module.js.map