UNPKG

envoc-form

Version:

Envoc form components

8 lines (7 loc) 177 B
export interface CustomFieldInputProps<TValue> { id: string; name: string; value: TValue; onChange: (newValue: TValue) => void; onBlur: () => void; }