UNPKG

yoyo-ng-modulewindy

Version:

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

26 lines 1.03 kB
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FullContentComponent } from './full-content.component'; import { FullContentToggleDirective } from './full-content-toggle.directive'; import { FullContentService } from './full-content.service'; var COMPONENTS = [FullContentComponent, FullContentToggleDirective]; var AdFullContentModule = /** @class */ (function () { function AdFullContentModule() { } AdFullContentModule.forRoot = function () { return { ngModule: AdFullContentModule, providers: [FullContentService], }; }; AdFullContentModule.decorators = [ { type: NgModule, args: [{ imports: [CommonModule], declarations: COMPONENTS.slice(), exports: COMPONENTS.slice(), },] }, ]; return AdFullContentModule; }()); export { AdFullContentModule }; //# sourceMappingURL=full-content.module.js.map