add AsControl type

This commit is contained in:
Dan Percic 2023-02-06 15:10:19 +02:00
parent a6d59a82b9
commit c217b5f07f

View File

@ -1 +1,5 @@
import { FormControl } from '@angular/forms';
export type List<T = string> = readonly T[];
export type AsControl<T> = { [K in keyof T]: FormControl<T[K]> };