UNPKG

@brizy/media-gallery

Version:
5 lines (4 loc) 413 B
import { TransitionMap } from "./types/transitionMap"; import { Action } from "redux"; import { GenericState } from "../../redux/types/state/Base"; export declare const reducerTransitionTester: <S1 extends GenericState, A extends Action<any> = Action<any>, S2 extends GenericState = S1>(testMap: TransitionMap<S1, S2>[], actions: A[], reducer: (state: S1, action: A) => S2, actionName: (a: A) => string) => void;