shineout
Version:
A components library for React
9 lines (8 loc) • 349 B
TypeScript
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']>;