Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Last active November 10, 2021 12:28
Show Gist options
  • Save NyaGarcia/22c8dc3f52b681298a05c520ba9e2278 to your computer and use it in GitHub Desktop.
Save NyaGarcia/22c8dc3f52b681298a05c520ba9e2278 to your computer and use it in GitHub Desktop.
The AbstractControl status property is typed with FormControlStatus in Angular 13
// 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