UNPKG

ant-plus-components

Version:

基于 Ant Design 的增强型组件库

9 lines (8 loc) 316 B
/// <reference types="react" /> import { type ColProps } from "antd"; import type { ColumnPlus } from "@/types/index"; export default function AntFormItemWrap({ children, column, col, }: { children: React.ReactNode; column: ColumnPlus; col: ColProps; }): import("react/jsx-runtime").JSX.Element;