UNPKG

shineout

Version:
9 lines (8 loc) 349 B
import { InputNumberProps as UnStyledInputNumberProps } from '@sheinx/base'; import { GetWithFieldProps } from '../hooks/use-field-common'; export type BaseNumberProps = Omit<UnStyledInputNumberProps, 'jssStyle'>; /** * @title Input.Number * @sort 3 */ export type InputNumberProps = GetWithFieldProps<BaseNumberProps, BaseNumberProps['value']>;