Skip to content

Commit b32df38

Browse files
committed
Update API
1 parent 74680e6 commit b32df38

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

etc/redux-toolkit.api.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,12 @@ import { DeepPartial } from 'redux';
1313
import { Dispatch } from 'redux';
1414
import { Draft } from 'immer';
1515
import { Middleware } from 'redux';
16+
import { OutputParametricSelector } from 'reselect';
17+
import { OutputSelector } from 'reselect';
18+
import { ParametricSelector } from 'reselect';
1619
import { Reducer } from 'redux';
1720
import { ReducersMapObject } from 'redux';
21+
import { Selector } from 'reselect';
1822
import { Store } from 'redux';
1923
import { StoreEnhancer } from 'redux';
2024
import { ThunkAction } from 'redux-thunk';
@@ -212,6 +216,12 @@ export type IdSelector<T> = (model: T) => EntityId;
212216
// @public
213217
export function isPlain(val: any): boolean;
214218

219+
export { OutputParametricSelector }
220+
221+
export { OutputSelector }
222+
223+
export { ParametricSelector }
224+
215225
// @public
216226
export type PayloadAction<P = void, T extends string = string, M = never, E = never> = {
217227
payload: P;
@@ -240,6 +250,8 @@ export type PrepareAction<P> = ((...args: any[]) => {
240250
error: any;
241251
});
242252

253+
export { Selector }
254+
243255
// @public
244256
export interface SerializableStateInvariantMiddlewareOptions {
245257
getEntries?: (value: any) => [string, any][];

0 commit comments

Comments
 (0)