Skip to content

Commit 9e09869

Browse files
committed
any -> unknown
1 parent e7017ed commit 9e09869

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Provider.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { createSubscription } from '../utils/Subscription'
44
import { useIsomorphicLayoutEffect } from '../utils/useIsomorphicLayoutEffect'
55
import { Action, AnyAction, Store } from 'redux'
66

7-
export interface ProviderProps<A extends Action = AnyAction, S = any> {
7+
export interface ProviderProps<A extends Action = AnyAction, S = unknown> {
88
/**
99
* The single Redux store in your application.
1010
*/
@@ -24,7 +24,7 @@ export interface ProviderProps<A extends Action = AnyAction, S = any> {
2424
children: ReactNode
2525
}
2626

27-
function Provider<A extends Action = AnyAction, S = any>({
27+
function Provider<A extends Action = AnyAction, S = unknown>({
2828
store,
2929
context,
3030
children,

0 commit comments

Comments
 (0)