// Type definitions for enzyme-redux 0.2 // Project: https://github.com/Knegusen/enzyme-redux#readme // Definitions by: Dennis Axelsson // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 3.1 import { ReactWrapper, ShallowWrapper } from 'enzyme'; import { ReactElement } from 'react'; export function shallowWithStore

( Component: ReactElement

, store: any ): ShallowWrapper

; export function mountWithStore

( Component: ReactElement

, store: any ): ReactWrapper

; export function shallowWithState

( Component: ReactElement

, state: any ): ShallowWrapper

; export function mountWithState

( Component: ReactElement

, state: any ): ReactWrapper

;