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