material-form-builder
Version:
FormBuilder For React.js
10 lines (9 loc) • 323 B
TypeScript
/// <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;
}