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