Framework which I use (Angular 7).
I want set some type for FormControl like this.
startDate: FormControl<NgbDate>;
endDate: FormControl<NgbDate>;
Do you have any experience with it or it is not posible in angular?
Framework which I use (Angular 7).
I want set some type for FormControl like this.
startDate: FormControl<NgbDate>;
endDate: FormControl<NgbDate>;
Do you have any experience with it or it is not posible in angular?
For now it's not possibile. Check this issue to Angular GitHub Reactive forms are not strongly typed
14.0.0-next.12
or higher. –
Herophilus It is available in angular 14 ,
startDate: FormControl<Date | null>(null);
endDate: FormControl<Date | null>(null);
© 2022 - 2024 — McMap. All rights reserved.