UNPKG

jlf-typed-form-craft

Version:
8 lines (7 loc) 206 B
import { FormGroup } from '@angular/forms'; export type FormControlOptions<T = any> = { validators: any[]; asyncValidators: any[]; defaultValue: T; disable: (form: FormGroup) => boolean; };