UNPKG

material-form-builder

Version:
10 lines (9 loc) 323 B
/// <reference types="react" /> import { BaseInput } from '../../types/input.base'; export type CustomInputValueType = any; export interface CustomInputProps extends Omit<BaseInput, 'onChangeValue' | 'ref'> { type: 'custom'; element: React.ElementType; allowObject?: boolean; [key: string]: any; }