7 lines
219 B
TypeScript
7 lines
219 B
TypeScript
|
import { StoreType } from '../src/renderer/redux/store'
|
||
|
|
||
|
declare module 'react-redux' {
|
||
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||
|
export interface DefaultRootState extends StoreType {}
|
||
|
}
|