Skip to content

Commit

Permalink
Try to fix exported types
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Sep 29, 2024
1 parent c967de6 commit c55de7f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions packages/toolkit/src/query/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ export type {
EndpointDefinition,
EndpointBuilder,
QueryDefinition,
InfiniteQueryDefinition,
InfiniteQueryExtraOptions,
MutationDefinition,
MutationExtraOptions,
TagDescription,
Expand Down
5 changes: 3 additions & 2 deletions packages/toolkit/src/query/react/buildHooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ import type {
Api,
ApiContext,
ApiEndpointMutation,
ApiEndpointInfiniteQuery,
ApiEndpointQuery,
BaseQueryFn,
CoreModule,
EndpointDefinitions,
InfiniteQueryDefinition,
MutationActionCreatorResult,
MutationDefinition,
MutationResultSelectorResult,
Expand Down Expand Up @@ -50,8 +52,7 @@ import { UNINITIALIZED_VALUE } from './constants'
import type { ReactHooksModuleOptions } from './module'
import { useStableQueryArgs } from './useSerializedStableValue'
import { useShallowStableValue } from './useShallowStableValue'
import type { InfiniteQueryDefinition } from '@internal/query/endpointDefinitions'
import type { ApiEndpointInfiniteQuery } from '@internal/query/core/module'

import type { InfiniteQueryActionCreatorResult } from '@internal/query/core/buildInitiate'
import type {
InfiniteData,
Expand Down

0 comments on commit c55de7f

Please sign in to comment.