UNPKG

yoyo-ng-modulewindy

Version:

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

23 lines 870 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { DelonUtilModule } from 'yoyo-ng-module/util'; import { ImageDirective } from './image.directive'; import { AdImageConfig } from './image.config'; var DIRECTIVES = [ImageDirective]; var AdImageModule = /** @class */ (function () { function AdImageModule() { } AdImageModule.forRoot = function () { return { ngModule: AdImageModule, providers: [AdImageConfig] }; }; AdImageModule.decorators = [ { type: NgModule, args: [{ imports: [CommonModule, DelonUtilModule], declarations: DIRECTIVES.slice(), exports: DIRECTIVES.slice(), },] }, ]; return AdImageModule; }()); export { AdImageModule }; //# sourceMappingURL=image.module.js.map