UNPKG

redux-detector

Version:

Redux enhancer for pure detection of state changes.

5 lines (4 loc) 138 B
/** * Maps state to a value. */ export declare type Selector<TState = any, TResult = any> = (state: TState | undefined) => TResult;