diff --git a/index.d.ts b/index.d.ts index 1b4d079e..26611ccb 100644 --- a/index.d.ts +++ b/index.d.ts @@ -7,14 +7,12 @@ import { StoreEnhancer } from "redux"; export interface DevTools { new (): JSX.ElementClass; - instrument(opts?: any): StoreEnhancer; + instrument(opts?: any): StoreEnhancer; } export declare function createDevTools(el: React.ReactElement): DevTools; -export declare function persistState( - debugSessionKey: string -): StoreEnhancer; +export declare function persistState(debugSessionKey: string): StoreEnhancer; -declare const factory: { instrument(opts?: any): () => StoreEnhancer }; +declare const factory: { instrument(opts?: any): () => StoreEnhancer }; export default factory;