style: remove empty comments (#23404)

PR Close #23404
This commit is contained in:
swseverance
2018-04-16 21:27:16 -04:00
committed by Igor Minar
parent f576851ecc
commit 12dcb313af
32 changed files with 12 additions and 99 deletions

View File

@ -166,14 +166,8 @@ export class EmailValidator implements Validator {
registerOnValidatorChange(fn: () => void): void { this._onChange = fn; }
}
/**
*
*/
export interface ValidatorFn { (c: AbstractControl): ValidationErrors|null; }
/**
*
*/
export interface AsyncValidatorFn {
(c: AbstractControl): Promise<ValidationErrors|null>|Observable<ValidationErrors|null>;
}