fix: public API golden files (#16414)

This commit is contained in:
Victor Berchet
2017-04-28 18:48:15 +02:00
committed by Miško Hevery
parent 8c09d10ba9
commit 8c50457385
+1 -1
View File
@@ -548,8 +548,8 @@ export interface ValidatorFn {
/** @stable */
export declare class Validators {
static compose(validators: null): null;
static compose(validators: (ValidatorFn | null | undefined)[]): ValidatorFn | null;
static compose(validators: null): null;
static composeAsync(validators: (AsyncValidatorFn | null)[]): AsyncValidatorFn | null;
static email(control: AbstractControl): ValidationErrors | null;
static max(max: number): ValidatorFn;