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