From a1b7a75dbc1aa05764307c5a48a0b8124a809406 Mon Sep 17 00:00:00 2001 From: graves501 Date: Wed, 15 Mar 2023 16:57:21 +0100 Subject: [PATCH] Fix compile error in TypedFormControl when using Angular 15 --- dist/formcontrol.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/formcontrol.d.ts b/dist/formcontrol.d.ts index 3237824..a7f38d1 100644 --- a/dist/formcontrol.d.ts +++ b/dist/formcontrol.d.ts @@ -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. @@ -23,7 +23,7 @@ export declare class TypedFormControl extends FormControl { /** @inheritdoc */ readonly valueChanges: Observable; /** @inheritdoc */ - readonly statusChanges: Observable; + readonly statusChanges: Observable; /** holds all possible validator names extracted by the given validators */ readonly registeredValidators: string[]; /** @inheritdoc */