Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dist/formcontrol.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FormControl, ValidatorFn, AsyncValidatorFn } from '@angular/forms';
import { FormControl, ValidatorFn, AsyncValidatorFn, FormControlStatus } from '@angular/forms';
import { Observable } from 'rxjs';
/**
* Validator options to have mapping key -> validator function.
Expand All @@ -23,7 +23,7 @@ export declare class TypedFormControl<T> extends FormControl {
/** @inheritdoc */
readonly valueChanges: Observable<T>;
/** @inheritdoc */
readonly statusChanges: Observable<T>;
readonly statusChanges: Observable<FormControlStatus>;
/** holds all possible validator names extracted by the given validators */
readonly registeredValidators: string[];
/** @inheritdoc */
Expand Down