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 { G2GaugeComponent } from './gauge.component';
var COMPONENTS = [G2GaugeComponent];
var AdG2GaugeModule = /** @class */ (function () {
function AdG2GaugeModule() {
}
AdG2GaugeModule.forRoot = function () {
return { ngModule: AdG2GaugeModule, providers: [] };
};
AdG2GaugeModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule],
declarations: COMPONENTS.slice(),
exports: COMPONENTS.slice(),
},] },
];
return AdG2GaugeModule;
}());
export { AdG2GaugeModule };
//# sourceMappingURL=gauge.module.js.map