UNPKG

ant-plus-components

Version:

基于 Ant Design 的增强型组件库

8 lines (7 loc) 335 B
import { type ColProps, type FormProps, type RowProps } from "antd"; import type { ColumnPlus } from "@/types/index"; export default function AntFormPlus<Values>({ columns, row, col, ...rest }: { columns: ColumnPlus[]; row?: RowProps; col?: ColProps; } & FormProps<Values>): import("react/jsx-runtime").JSX.Element;