Skip to content

Commit 687ddfa

Browse files
committed
Fix TS 4.7 compile issue
1 parent 4409a2f commit 687ddfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/connect/wrapMapToProps.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ type StateOrDispatch<S = AnyState> = S | Dispatch
88

99
type AnyProps = { [key: string]: any }
1010

11-
export type MapToProps<P = AnyProps> = {
11+
export type MapToProps<P extends AnyProps = AnyProps> = {
1212
// eslint-disable-next-line no-unused-vars
1313
(stateOrDispatch: StateOrDispatch, ownProps?: P): FixTypeLater
1414
dependsOnOwnProps?: boolean
@@ -65,7 +65,7 @@ export function getDependsOnOwnProps(mapToProps: MapToProps) {
6565
// * On first call, verifies the first result is a plain object, in order to warn
6666
// the developer that their mapToProps function is not returning a valid result.
6767
//
68-
export function wrapMapToPropsFunc<P = AnyProps>(
68+
export function wrapMapToPropsFunc<P extends AnyProps = AnyProps>(
6969
mapToProps: MapToProps,
7070
methodName: string
7171
) {

0 commit comments

Comments
 (0)