@undermuz/react-json-form
Version:
Generate JSON-based forms with react
16 lines (13 loc) • 464 B
TypeScript
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 };