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