fix(forms): remove equalsTo validator (#15050)

This API was introduced only in a beta release, and is being removed because we found it to be incorrect prior to launch. For more information about why this is being removed, see https://github.com/angular/angular/pull/15050.
This commit is contained in:
Kara
2017-03-14 15:37:51 -07:00
committed by Chuck Jazdzewski
parent 2c5a671341
commit 778f7d6f33
3 changed files with 0 additions and 63 deletions

View File

@ -554,7 +554,6 @@ export declare class Validators {
static email(control: AbstractControl): {
[key: string]: boolean;
};
static equalsTo(...fieldPaths: string[]): ValidatorFn;
static maxLength(maxLength: number): ValidatorFn;
static minLength(minLength: number): ValidatorFn;
static nullValidator(c: AbstractControl): {