fabric8-planner
Version:
A planner front-end for Fabric8.
26 lines • 862 B
JavaScript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { SwitchComponent } from './switch.component';
var SwitchModule = /** @class */ (function () {
function SwitchModule() {
}
SwitchModule.decorators = [
{ type: NgModule, args: [{
imports: [
CommonModule,
FormsModule
],
declarations: [
SwitchComponent
],
providers: [],
exports: [SwitchComponent]
},] },
];
/** @nocollapse */
SwitchModule.ctorParameters = function () { return []; };
return SwitchModule;
}());
export { SwitchModule };
//# sourceMappingURL=switch.module.js.map