UNPKG

forms-reactive

Version:

Reactive Form Web Component

18 lines (17 loc) 781 B
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ /** * @license * Copyright AppFeel (Bit Genoma Digital Solutions SL) All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/appfeel/reactive-forms/LICENSE */ import { AsyncValidator, AsyncValidatorFn, Validator, ValidatorFn } from './validators'; export declare function composeValidators(validators: Array<Validator | ValidatorFn>): ValidatorFn | null; export declare function composeAsyncValidators(validators: Array<AsyncValidator | AsyncValidatorFn>): AsyncValidatorFn | null;