We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fbeed1 commit 995469eCopy full SHA for 995469e
types/form/form.d.ts
@@ -205,13 +205,13 @@ export interface WrappedFormUtils {
205
* Get the specified fields' error. If you don't specify a parameter, you will get all fields' error.
206
* @type Function (Function([names: string[]))
207
*/
208
- getFieldsError(names: string[]): object;
+ getFieldsError(names?: string[]): object;
209
210
/**
211
* Get the specified fields' values. If you don't specify a parameter, you will get all fields' values.
212
* @type Funtion (Function([fieldNames: string[]))
213
214
- getFieldsValue(fieldNames: string[]): object;
+ getFieldsValue(fieldNames?: string[]): object;
215
216
217
* Get the value of a field.
0 commit comments