UNPKG

@schema-render/form-render-react

Version:

Out-of-the-box form rendering library based on Core and Antd.

12 lines (11 loc) 264 B
import type { SpaceProps } from 'antd'; import type { FC } from 'react'; interface IActionsProps extends SpaceProps { /** 全局禁用状态 */ disabled?: boolean; } /** * 搜索操作 */ declare const Actions: FC<IActionsProps>; export default Actions;