UNPKG

@brizy/media-gallery

Version:
11 lines (10 loc) 289 B
import { GenericState } from "~/redux/types/state/Base"; import { Action } from "redux"; export type TransitionMap<T1 extends GenericState, T2 extends GenericState = T1> = { state: T1; actions: { action: Action; nextState: T2; comment?: string; }[]; };