Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Commit 68c0f9a

Browse files
authored
Merge pull request #859 from jmhain/master
Fix void type parameter in LocalForm definition
2 parents b0dcaa5 + 99ff11c commit 68c0f9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

react-redux-form.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ interface LocalFormProps extends BaseFormProps {
404404
*/
405405
model?: string;
406406
}
407-
export class LocalForm extends React.Component<LocalFormProps, void> { }
407+
export class LocalForm extends React.Component<LocalFormProps, {}> { }
408408

409409
interface BaseFieldsetProps {
410410
/**

0 commit comments

Comments
 (0)