interface SimpleForm {
firstName: string;
lastName: string;
}
const form = new TypedFormGroup<SimpleForm>({
firstName: new TypedFormControl({ value: 'Adam', disabled: true }),
lastName: new TypedFormControl({ value: 'Adam', disabled: true })
});
additionally, how possible to create a form definition structure in this case with { value: string, disabled: boolean } ?
additionally, how possible to create a form definition structure in this case with { value: string, disabled: boolean } ?