mirror of
https://github.com/zhigang1992/devhub.git
synced 2026-05-15 17:17:13 +08:00
12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
export * from 'react-redux'
|
|
|
|
declare module 'react-redux' {
|
|
import { Context } from 'react'
|
|
import { Store } from 'redux'
|
|
|
|
export const ReactReduxContext: Context<{
|
|
store: Store
|
|
storeState: any
|
|
}>
|
|
}
|