export interface FormRow { id: string; value: any; } export interface FormRowTyped extends FormRow { value: T; }