diff --git a/components/form/Form.tsx b/components/form/Form.tsx index d630fa047a..8060ce420e 100755 --- a/components/form/Form.tsx +++ b/components/form/Form.tsx @@ -77,8 +77,8 @@ export const formProps = () => ({ export type FormProps = Partial>>; export type FormExpose = { - resetFields: (name?: NamePath) => void; - clearValidate: (name?: NamePath) => void; + resetFields: (nameList?: NamePath[]) => void; + clearValidate: (nameList?: NamePath[]) => void; validateFields: ( nameList?: NamePath[] | string, options?: ValidateOptions,