All files / src/input index.ts

100% Statements 11/11
100% Branches 0/0
100% Functions 0/0
100% Lines 10/10
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 321x 1x 1x 1x 1x 1x 1x 1x   1x                                         1x  
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { TlInput } from './input';
import { DirectiveModule } from '../core/directives/index';
import { IdGeneratorService } from '../core/helper/idgenerator.service';
import { NameGeneratorService } from '../core/helper/namegenerator.service';
import { TabIndexService } from '../form/tabIndex.service';
 
export * from './input';
 
@NgModule({
    imports: [
        CommonModule,
        FormsModule,
        DirectiveModule,
    ],
    declarations: [
        TlInput
    ],
    exports: [
        TlInput,
        DirectiveModule,
    ],
    providers: [
        IdGeneratorService,
        NameGeneratorService,
        TabIndexService
    ]
})
export class InputModule {}