UNPKG

yoyo-ng-modulewindy

Version:

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

25 lines 1.08 kB
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { NgZorroAntdModule } from 'ng-zorro-antd'; import { ObserversModule } from '@angular/cdk/observers'; import { DescListComponent } from './desc-list.component'; import { DescListItemComponent } from './desc-list-item.component'; import { AdDescListConfig } from './desc-list.config'; var COMPONENTS = [DescListComponent, DescListItemComponent]; var AdDescListModule = /** @class */ (function () { function AdDescListModule() { } AdDescListModule.forRoot = function () { return { ngModule: AdDescListModule, providers: [AdDescListConfig] }; }; AdDescListModule.decorators = [ { type: NgModule, args: [{ imports: [CommonModule, NgZorroAntdModule, ObserversModule], declarations: COMPONENTS.slice(), exports: COMPONENTS.slice(), },] }, ]; return AdDescListModule; }()); export { AdDescListModule }; //# sourceMappingURL=desc-list.module.js.map