Skip to content

Commit

Permalink
any -> unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverJAsh committed Oct 6, 2022
1 parent e7017ed commit 9e09869
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createSubscription } from '../utils/Subscription'
import { useIsomorphicLayoutEffect } from '../utils/useIsomorphicLayoutEffect'
import { Action, AnyAction, Store } from 'redux'

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

function Provider<A extends Action = AnyAction, S = any>({
function Provider<A extends Action = AnyAction, S = unknown>({
store,
context,
children,
Expand Down

0 comments on commit 9e09869

Please sign in to comment.