Created
November 10, 2021 12:30
-
-
Save NyaGarcia/4f2cdb797f979186a4ee1d769201c1ac to your computer and use it in GitHub Desktop.
The AbstractControl status property is typed as string 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 12 | |
export abstract class AbstractControl { | |
readonly status: string; | |
readonly statusChanges: Observable<any>; | |
} | |
export class FormControl extends AbstractControl { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment