UNPKG

@ant-design/pro-form

Version:
10 lines (9 loc) 415 B
import type { FormSchema } from './typing'; export * from './typing'; /** * 此组件可以根据 Json Schema 来生成相应的表单,大部分配置与 antd 的 table 列配置相同 * * @see 此组件仍为 beta 版本,api 可能发生变化 */ declare function BetaSchemaForm<T, ValueType = 'text'>(props: FormSchema<T, ValueType>): import("react/jsx-runtime").JSX.Element; export default BetaSchemaForm;