File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import type { FixTypeLater } from '../types'
4
4
import type Subscription from '../utils/Subscription'
5
5
6
6
export interface ReactReduxContextValue < A extends Action = AnyAction > {
7
- store : Store < FixTypeLater , A > ;
7
+ store : Store < FixTypeLater , A >
8
8
subscription : Subscription
9
9
}
10
10
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ interface ProviderProps<A extends Action = AnyAction> {
10
10
/**
11
11
* The single Redux store in your application.
12
12
*/
13
- store : Store < FixTypeLater , A > ;
13
+ store : Store < FixTypeLater , A >
14
14
/**
15
15
* Optional context to be used internally in react-redux. Use React.createContext() to create a context to be used.
16
16
* If this is used, generate own connect HOC by using connectAdvanced, supplying the same context provided to the
17
17
* Provider. Initial value doesn't matter, as it is overwritten with the internal state of Provider.
18
18
*/
19
- context ?: Context < ReactReduxContextValue > ;
19
+ context ?: Context < ReactReduxContextValue >
20
20
children : ReactNode
21
21
}
22
22
Original file line number Diff line number Diff line change 1
- export type FixTypeLater = any ;
1
+ export type FixTypeLater = any
You can’t perform that action at this time.
0 commit comments