@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
16 lines (15 loc) • 365 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[];
defaultValue?: string[];
}
declare const Checkbox: FC<IProps>;
export default Checkbox;