source: node_modules/@reduxjs/toolkit/src/query/react/index.ts

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 1.3 KB
Line 
1// This must remain here so that the `mangleErrors.cjs` build script
2// does not have to import this into each source file it rewrites.
3import { formatProdErrorMessage } from '@reduxjs/toolkit'
4
5import { buildCreateApi, coreModule } from './rtkqImports'
6import { reactHooksModule, reactHooksModuleName } from './module'
7
8export * from '@reduxjs/toolkit/query'
9export { ApiProvider } from './ApiProvider'
10
11const createApi = /* @__PURE__ */ buildCreateApi(
12 coreModule(),
13 reactHooksModule(),
14)
15
16export type {
17 TypedUseMutationResult,
18 TypedUseQueryHookResult,
19 TypedUseQueryStateResult,
20 TypedUseQuerySubscriptionResult,
21 TypedLazyQueryTrigger,
22 TypedUseLazyQuery,
23 TypedUseMutation,
24 TypedMutationTrigger,
25 TypedQueryStateSelector,
26 TypedUseQueryState,
27 TypedUseQuery,
28 TypedUseQuerySubscription,
29 TypedUseLazyQuerySubscription,
30 TypedUseQueryStateOptions,
31 TypedUseLazyQueryStateResult,
32 TypedUseInfiniteQuery,
33 TypedUseInfiniteQueryHookResult,
34 TypedUseInfiniteQueryStateResult,
35 TypedUseInfiniteQuerySubscriptionResult,
36 TypedUseInfiniteQueryStateOptions,
37 TypedInfiniteQueryStateSelector,
38 TypedUseInfiniteQuerySubscription,
39 TypedUseInfiniteQueryState,
40 TypedLazyInfiniteQueryTrigger,
41} from './buildHooks'
42export { UNINITIALIZED_VALUE } from './constants'
43export { createApi, reactHooksModule, reactHooksModuleName }
Note: See TracBrowser for help on using the repository browser.