Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
OrJDev committed May 1, 2023
1 parent a8e815a commit de6ecb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { queryOptions } from '../createQuery'
import { createQuery } from '../index'
import { createQuery, queryOptions } from '../index'

export type Equal<X, Y> = (<T>() => T extends X ? 1 : 2) extends <
T,
Expand Down
2 changes: 1 addition & 1 deletion packages/solid-query/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export type {
QueryClientConfig,
InfiniteQueryObserverOptions,
} from './QueryClient'
export { createQuery } from './createQuery'
export { createQuery, queryOptions } from './createQuery'
export {
QueryClientContext,
QueryClientProvider,
Expand Down

0 comments on commit de6ecb5

Please sign in to comment.