zent
Version:
一套前端设计语言和基于React的实现
6 lines (5 loc) • 469 B
TypeScript
/// <reference types="react" />
import { INumberInputDecimalProps, INumberInputIntegerProps } from '../../number-input';
import { IFormComponentProps } from '../shared';
export declare type IFormNumberInputFieldProps<T> = IFormComponentProps<T, Omit<INumberInputDecimalProps, 'value'> | Omit<INumberInputIntegerProps, 'value'>>;
export declare function FormNumberInputField<T extends number | string | null = number>(props: IFormNumberInputFieldProps<T>): JSX.Element;