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