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.
2 parents faaacea + 6f5d2c6 commit 6f140b5Copy full SHA for 6f140b5
index.d.ts
@@ -0,0 +1,18 @@
1
+// Redux version 4.0.0
2
+// Type definitions for redux-devtools 3.4.1
3
+// TypeScript Version: 2.8.1
4
+
5
+import * as React from "react";
6
+import { StoreEnhancer } from "redux";
7
8
+export interface DevTools {
9
+ new (): JSX.ElementClass;
10
+ instrument(opts?: any): StoreEnhancer;
11
+}
12
13
+export declare function createDevTools(el: React.ReactElement<any>): DevTools;
14
+export declare function persistState(debugSessionKey: string): StoreEnhancer;
15
16
+declare const factory: { instrument(opts?: any): () => StoreEnhancer };
17
18
+export default factory;
0 commit comments