UNPKG

redux-detector

Version:

Redux enhancer for pure detection of state changes.

8 lines (7 loc) 187 B
import { Detector } from "./Detector"; /** * Detectable store extension */ export interface DetectableStoreExt<S = any> { replaceDetector(nextDetector: Detector<S>): void; }