mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 09:25:15 +00:00
10 lines
448 B
TypeScript
10 lines
448 B
TypeScript
|
import { createSelector } from 'reselect';
|
||
|
/**
|
||
|
* "Draft-Safe" version of `reselect`'s `createSelector`:
|
||
|
* If an `immer`-drafted object is passed into the resulting selector's first argument,
|
||
|
* the selector will act on the current draft value, instead of returning a cached value
|
||
|
* that might be possibly outdated if the draft has been modified since.
|
||
|
* @public
|
||
|
*/
|
||
|
export declare const createDraftSafeSelector: typeof createSelector;
|