Last active
November 10, 2021 12:28
-
-
Save NyaGarcia/22c8dc3f52b681298a05c520ba9e2278 to your computer and use it in GitHub Desktop.
The AbstractControl status property is typed with FormControlStatus in Angular 13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Angular 13 | |
export abstract class AbstractControl { | |
readonly status: FormControlStatus; | |
readonly statusChanges: Observable<FormControlStatus>; | |
} | |
export class FormControl extends AbstractControl { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment