@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
21 lines (20 loc) • 526 B
TypeScript
import type { FC } from 'react';
import type { Rule } from 'antd/lib/form/';
interface IProps {
name: string;
label: string;
options: string[] | number[] | {
label: string;
value: string;
disabled?: boolean;
}[];
rules?: Rule[];
minMinValue?: number;
minDefaultValue?: number;
maxDefaultValue?: number;
showInputKey?: string;
showFileNumKey?: string;
showFileSizeKey?: string;
}
declare const VerifyNumberValue: FC<IProps>;
export default VerifyNumberValue;