dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_InputModule cluster_InputModule_declarations cluster_InputModule_exports Label Label InputModule InputModule Label->InputModule TextInput TextInput TextInput->InputModule TextArea TextArea TextArea->InputModule Label Label InputModule->Label TextInput TextInput InputModule->TextInput TextArea TextArea InputModule->TextArea

File

src/input/input.module.ts

import { NgModule } from "@angular/core";
import { FormsModule } from "@angular/forms";
import { CommonModule } from "@angular/common";

// imports
import { Label } from "./label.component";
import { TextInput } from "./input.directive";
import { TextArea } from "./text-area.directive";

@NgModule({
	declarations: [
		Label,
		TextInput,
		TextArea
	],
	exports: [
		Label,
		TextInput,
		TextArea
	],
	imports: [
		CommonModule,
		FormsModule
	]
})
class InputModule { }

export { TextInput, Label, InputModule };

results matching ""

    No results matching ""