We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e6db59 commit 6f5d2c6Copy full SHA for 6f5d2c6
index.d.ts
@@ -7,14 +7,12 @@ import { StoreEnhancer } from "redux";
7
8
export interface DevTools {
9
new (): JSX.ElementClass;
10
- instrument(opts?: any): StoreEnhancer<any>;
+ instrument(opts?: any): StoreEnhancer;
11
}
12
13
export declare function createDevTools(el: React.ReactElement<any>): DevTools;
14
-export declare function persistState(
15
- debugSessionKey: string
16
-): StoreEnhancer<any>;
+export declare function persistState(debugSessionKey: string): StoreEnhancer;
17
18
-declare const factory: { instrument(opts?: any): () => StoreEnhancer<any> };
+declare const factory: { instrument(opts?: any): () => StoreEnhancer };
19
20
export default factory;
0 commit comments