UNPKG

@cause-911/material

Version:

Run `npm install @cause-911/material --save` to add this library to your project

17 lines (16 loc) 605 B
import { OnInit } from '@angular/core'; import { FormControl } from '@angular/forms'; import { Configuration, CoreService, TranslateService } from '@cause-911/core'; export declare class InputMultipleLangueComponent implements OnInit { private translate; value: string[]; config: Configuration; forms: FormControl[]; labels: string[]; selectedIndex: number; constructor(coreService: CoreService, translate: TranslateService); ngOnInit(): void; onTagChanged(tabIndex: number): void; getErrorMessage(index: any): "" | "error.required"; private initializeForms; }