UNPKG

material-form-builder

Version:
8 lines (7 loc) 342 B
import { TextFieldProps } from '@mui/material'; import { BaseInput } from '../../types/input.base'; export type NumberInputValueType = number | null; export interface NumberInputProps extends BaseInput<NumberInputValueType>, Omit<TextFieldProps, 'defaultValue' | 'ref'> { type: 'number'; defaultValue?: NumberInputValueType; }