UNPKG

635 BPlain TextView Raw
1// This file exists to consolidate all of the imports from the `@reduxjs/toolkit` package.
2// ESBuild does not de-duplicate imports, so this file is used to ensure that each method
3// imported is only listed once, and there's only one mention of the `@reduxjs/toolkit` package.
4
5export {
6 createAction,
7 createSlice,
8 createSelector,
9 createAsyncThunk,
10 combineReducers,
11 createNextState,
12 isAnyOf,
13 isAllOf,
14 isAction,
15 isPending,
16 isRejected,
17 isFulfilled,
18 isRejectedWithValue,
19 isAsyncThunkAction,
20 prepareAutoBatched,
21 SHOULD_AUTOBATCH,
22 isPlainObject,
23 nanoid,
24} from '@reduxjs/toolkit'