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