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