UNPKG

redux-detector

Version:

Redux enhancer for pure detection of state changes.

8 lines (7 loc) 283 B
import { Action, AnyAction, Store } from "redux"; import { DetectableStoreExt } from "./DetectableStoreExt"; /** * Store enhanced by detector enhancer. */ export interface DetectableStore<S = any, A extends Action = AnyAction> extends Store<S, A>, DetectableStoreExt<S> { }