UNPKG

bia-framework

Version:

Bia Framework to work with angular 2

16 lines (15 loc) 664 B
import { OnInit } from "@angular/core"; import { CoreFormInput } from "../core-form-input/core-form-input.component"; import { AbstractControl } from "@angular/forms"; import { CoreFormDropDown } from "../core-form-dropdown/core-form-dropdown"; export declare class CoreFormValidationOnlyNumber implements OnInit { private inputHost; private dropDownHost; private validationOnlyNumberMessage; private host; ngOnInit(): any; constructor(inputHost: CoreFormInput, dropDownHost: CoreFormDropDown, validationOnlyNumberMessage: string); static OnlyNumberValidator(c: AbstractControl): { [s: string]: boolean; }; }