Skip to content

Commit

Permalink
revert: fix: public API golden files (#16414)
Browse files Browse the repository at this point in the history
This reverts commit dcaa11a.
  • Loading branch information
matsko committed May 4, 2017
1 parent 4a0e93b commit 5f6d0f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/public_api_guard/forms/forms.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -532,8 +532,8 @@ export interface ValidatorFn {

/** @stable */
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 maxLength(maxLength: number): ValidatorFn;
Expand Down

0 comments on commit 5f6d0f2

Please sign in to comment.