diff --git a/components/form/index.tsx b/components/form/index.tsx index 5c0596003c6d2c136cbf9d9ed985623d52eb2478..e7aa8698b93b4c2bccdd0f01e9430e37b779724d 100644 --- a/components/form/index.tsx +++ b/components/form/index.tsx @@ -1,7 +1,7 @@ import { Rule, RuleObject, RuleRender } from 'rc-field-form/lib/interface'; import InternalForm, { useForm, FormInstance, FormProps } from './Form'; import Item, { FormItemProps } from './FormItem'; -import List from './FormList'; +import List, { FormListProps } from './FormList'; import { FormProvider } from './context'; import devWarning from '../_util/devWarning'; @@ -31,6 +31,6 @@ Form.create = () => { ); }; -export { FormInstance, FormProps, FormItemProps, Rule, RuleObject, RuleRender }; +export { FormInstance, FormProps, FormItemProps, FormListProps, Rule, RuleObject, RuleRender }; export default Form;