dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_IoModule cluster_IoModule_declarations cluster_IoModule_exports DynamicRackComponent DynamicRackComponent IoModule IoModule DynamicRackComponent->IoModule DynamicSlotComponent DynamicSlotComponent DynamicSlotComponent->IoModule InputComponent InputComponent InputComponent->IoModule InputErrorsComponent InputErrorsComponent InputErrorsComponent->IoModule OutputComponent OutputComponent OutputComponent->IoModule SlotHostDirective SlotHostDirective SlotHostDirective->IoModule DynamicRackComponent DynamicRackComponent IoModule->DynamicRackComponent DynamicSlotComponent DynamicSlotComponent IoModule->DynamicSlotComponent InputComponent InputComponent IoModule->InputComponent InputErrorsComponent InputErrorsComponent IoModule->InputErrorsComponent OutputComponent OutputComponent IoModule->OutputComponent SlotHostDirective SlotHostDirective IoModule->SlotHostDirective
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { DynamicSlotComponent } from './dynamic-slot/dynamic-slot.component';
import { SlotHostDirective } from './slot-host.directive';
import { OutputComponent } from './output/output.component';
import { InputComponent } from './input/input.component';
import { InputErrorsComponent } from './input-errors/input-errors.component';
import { ReactiveFormsModule } from '@angular/forms';
import { DynamicRackComponent } from './dynamic-rack/dynamic-rack.component';

@NgModule({
  entryComponents: [InputComponent, OutputComponent, InputErrorsComponent],
  declarations: [
    InputErrorsComponent,
    SlotHostDirective,
    DynamicSlotComponent,
    DynamicRackComponent,
    InputComponent,
    OutputComponent,
  ],
  imports: [CommonModule, ReactiveFormsModule],
  exports: [
    SlotHostDirective,
    DynamicSlotComponent,
    DynamicRackComponent,
    InputComponent,
    OutputComponent,
    InputErrorsComponent,
    ReactiveFormsModule,
  ],
  providers: [],
})
export class IoModule {}

result-matching ""

    No results matching ""