You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
849 B
20 lines
849 B
import { Rule, RuleObject, RuleRender } from 'rc-field-form/lib/interface';
|
|
import InternalForm, { useForm, FormInstance, FormProps } from './Form';
|
|
import Item, { FormItemProps } from './FormItem';
|
|
import ErrorList, { ErrorListProps } from './ErrorList';
|
|
import List, { FormListProps } from './FormList';
|
|
import { FormProvider } from './context';
|
|
declare type InternalFormType = typeof InternalForm;
|
|
interface FormInterface extends InternalFormType {
|
|
useForm: typeof useForm;
|
|
Item: typeof Item;
|
|
List: typeof List;
|
|
ErrorList: typeof ErrorList;
|
|
Provider: typeof FormProvider;
|
|
/** @deprecated Only for warning usage. Do not use. */
|
|
create: () => void;
|
|
}
|
|
declare const Form: FormInterface;
|
|
export { FormInstance, FormProps, FormItemProps, ErrorListProps, Rule, RuleObject, RuleRender, FormListProps, };
|
|
export default Form;
|