@chamn/engine
Version:
9 lines (8 loc) • 377 B
TypeScript
import { InputProps } from 'antd';
export type InputNumberPlusProps = Omit<InputProps, 'onChange'> & {
min?: number;
max?: number;
value?: number;
onChange?: (newVal: number | undefined) => void;
};
export declare const InputNumberPlus: ({ min, max, value, onChange, addonAfter, ...restProps }: InputNumberPlusProps) => import("react/jsx-runtime").JSX.Element;