UNPKG

@undermuz/react-json-form

Version:
16 lines (13 loc) 464 B
import { FC, PropsWithChildren } from 'react'; import { j as ISchemeItem, G as IChildFormsSetRef } from '../types-4491bbaa.js'; import '@undermuz/use-form'; type IFormItemProps = ISchemeItem & { isLast?: boolean; isLoading?: boolean; isFormPrimary: boolean; level: number; as?: any; onFormsRef?: IChildFormsSetRef; }; declare const FormItem: FC<PropsWithChildren & IFormItemProps>; export { IFormItemProps, FormItem as default };