@ng-ui-libraries/forms
Version:
25 lines (24 loc) • 723 B
TypeScript
import { Injector } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';
import { NgFormControl } from '../NgFormControl';
export declare class PhoneComponent extends NgFormControl<string> {
injector: Injector;
name: string;
label: string;
disabled: boolean;
required: boolean;
parentFormControl: FormControl;
parentFormGroup: FormGroup;
additionalValidators: any[];
phoneForm: {
part1: string;
part2: string;
part3: string;
};
identifier: string;
constructor(injector: Injector);
onLoad(): void;
getFor(): string;
format(): void;
onKeyUp(event: KeyboardEvent, currentElement: any, nextElement: any): void;
}