File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ type StateOrDispatch<S = AnyState> = S | Dispatch
8
8
9
9
type AnyProps = { [ key : string ] : any }
10
10
11
- export type MapToProps < P = AnyProps > = {
11
+ export type MapToProps < P extends AnyProps = AnyProps > = {
12
12
// eslint-disable-next-line no-unused-vars
13
13
( stateOrDispatch : StateOrDispatch , ownProps ?: P ) : FixTypeLater
14
14
dependsOnOwnProps ?: boolean
@@ -65,7 +65,7 @@ export function getDependsOnOwnProps(mapToProps: MapToProps) {
65
65
// * On first call, verifies the first result is a plain object, in order to warn
66
66
// the developer that their mapToProps function is not returning a valid result.
67
67
//
68
- export function wrapMapToPropsFunc < P = AnyProps > (
68
+ export function wrapMapToPropsFunc < P extends AnyProps = AnyProps > (
69
69
mapToProps : MapToProps ,
70
70
methodName : string
71
71
) {
You can’t perform that action at this time.
0 commit comments