UNPKG

yoyo-ng-modulewindy

Version:

服务于52ABP模板的前端开源的相关组件内容。整合了ng-alain和你NG ZORRO的内容

26 lines 1.04 kB
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { NoticeIconComponent } from './notice-icon.component'; import { NoticeIconTabComponent } from './notice-icon-tab.component'; var COMPONENTS = [NoticeIconComponent]; // region: zorro modules import { NgZorroAntdModule } from 'ng-zorro-antd'; var ZORROMODULES = [NgZorroAntdModule]; // endregion var AdNoticeIconModule = /** @class */ (function () { function AdNoticeIconModule() { } AdNoticeIconModule.forRoot = function () { return { ngModule: AdNoticeIconModule, providers: [] }; }; AdNoticeIconModule.decorators = [ { type: NgModule, args: [{ imports: [CommonModule].concat(ZORROMODULES), declarations: COMPONENTS.concat([NoticeIconTabComponent]), exports: COMPONENTS.slice(), },] }, ]; return AdNoticeIconModule; }()); export { AdNoticeIconModule }; //# sourceMappingURL=notice-icon.module.js.map