src/switch/switch.module.ts
Deprecated in favour of ToggleModule (to be removed in v3.0).
import { NgModule } from "@angular/core";
import { FormsModule } from "@angular/forms";
import { CommonModule } from "@angular/common";
// imports
import { Switch } from "../switch/switch.component";
// exports
export { Switch } from "../switch/switch.component";
/**
* Deprecated in favour of `ToggleModule` (to be removed in v3.0).
*
* @deprecated
*/
@NgModule({
declarations: [
Switch
],
exports: [
Switch
],
imports: [
CommonModule,
FormsModule
]
})
export class SwitchModule { }