// Type definitions for redux-devtools 3.0.0 // Project: https://github.com/gaearon/redux-devtools // Definitions by: Petryshyn Sergii // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// declare module "redux-devtools" { import * as React from 'react' interface IDevTools { new (): JSX.ElementClass instrument(): (opts: any) => any; } export function createDevTools(el: React.ReactElement): IDevTools export function persistState(debugSessionKey: string): Function var factory: { instrument(): (opts: any) => any } export default factory; }