mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 11:34:26 +00:00
7 lines
201 B
TypeScript
7 lines
201 B
TypeScript
|
declare module 'redux-test-utils' {
|
||
|
import { Store } from 'react-redux';
|
||
|
|
||
|
export function createMockStore(testState: any): Store<any>;
|
||
|
export function createMockDispatch(testAction: any): any;
|
||
|
}
|