Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Created November 10, 2021 12:30
Show Gist options
  • Save NyaGarcia/4f2cdb797f979186a4ee1d769201c1ac to your computer and use it in GitHub Desktop.
Save NyaGarcia/4f2cdb797f979186a4ee1d769201c1ac to your computer and use it in GitHub Desktop.
The AbstractControl status property is typed as string in Angular 13
// 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