build: update API Golden files after node 12 update (#34955)

PR Close #34955
This commit is contained in:
Joey Perrott
2020-01-24 10:55:39 -08:00
committed by Andrew Kushnir
parent 8fbb48cc2e
commit b3bd6ca925
6 changed files with 724 additions and 724 deletions

View File

@ -524,8 +524,8 @@ export interface ValidatorFn {
}
export declare class Validators {
static compose(validators: (ValidatorFn | null | undefined)[]): ValidatorFn | null;
static compose(validators: null): null;
static compose(validators: (ValidatorFn | null | undefined)[]): ValidatorFn | null;
static composeAsync(validators: (AsyncValidatorFn | null)[]): AsyncValidatorFn | null;
static email(control: AbstractControl): ValidationErrors | null;
static max(max: number): ValidatorFn;