yoyo-ng-modulewindy
Version:
服务于52ABP模板的前端开源的相关组件内容。整合了ng-alain和你NG ZORRO的内容
21 lines • 770 B
JavaScript
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { DownFileDirective } from './down-file.directive';
var DIRECTIVES = [DownFileDirective];
var AdDownFileModule = /** @class */ (function () {
function AdDownFileModule() {
}
AdDownFileModule.forRoot = function () {
return { ngModule: AdDownFileModule, providers: [] };
};
AdDownFileModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule],
declarations: DIRECTIVES.slice(),
exports: DIRECTIVES.slice(),
},] },
];
return AdDownFileModule;
}());
export { AdDownFileModule };
//# sourceMappingURL=down-file.module.js.map