UNPKG

yoyo-ng-modulewindy

Version:

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

24 lines 913 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { NgZorroAntdModule } from 'ng-zorro-antd'; import { SHFWrapDirective } from './wrap.directive'; import { SHFItemComponent } from './item.component'; import { AdSHFConfig } from './config'; var COMPONENTS = [SHFWrapDirective, SHFItemComponent]; var AdSHFModule = /** @class */ (function () { function AdSHFModule() { } AdSHFModule.forRoot = function () { return { ngModule: AdSHFModule, providers: [AdSHFConfig] }; }; AdSHFModule.decorators = [ { type: NgModule, args: [{ imports: [CommonModule, NgZorroAntdModule], declarations: COMPONENTS.slice(), exports: COMPONENTS.slice(), },] }, ]; return AdSHFModule; }()); export { AdSHFModule }; //# sourceMappingURL=module.js.map