Skip to content

Commit 81d35ac

Browse files
committed
prettier-ify index.ts (seems my editor messed with it already this pr?)
1 parent a6d38f8 commit 81d35ac

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

packages/query-core/src/index.ts

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
export { focusManager } from './focusManager'
44
export {
5-
defaultShouldDehydrateMutation, defaultShouldDehydrateQuery, dehydrate,
6-
hydrate
5+
defaultShouldDehydrateMutation,
6+
defaultShouldDehydrateQuery,
7+
dehydrate,
8+
hydrate,
79
} from './hydration'
810
export { InfiniteQueryObserver } from './infiniteQueryObserver'
911
export { MutationCache } from './mutationCache'
@@ -21,24 +23,33 @@ export {
2123
timeoutManager,
2224
type ManagedTimerId,
2325
type TimeoutCallback,
24-
type TimeoutProvider
26+
type TimeoutProvider,
2527
} from './timeoutManager'
2628
export {
27-
hashKey, isServer, keepPreviousData, matchMutation, matchQuery, noop, partialMatchKey,
28-
replaceEqualDeep, shouldThrowError, skipToken
29+
hashKey,
30+
isServer,
31+
keepPreviousData,
32+
matchMutation,
33+
matchQuery,
34+
noop,
35+
partialMatchKey,
36+
replaceEqualDeep,
37+
shouldThrowError,
38+
skipToken,
2939
} from './utils'
3040
export type { MutationFilters, QueryFilters, SkipToken, Updater } from './utils'
3141

3242
export { streamedQuery as experimental_streamedQuery } from './streamedQuery'
3343

3444
// Types
3545
export type {
36-
DehydratedState, DehydrateOptions, HydrateOptions
46+
DehydratedState,
47+
DehydrateOptions,
48+
HydrateOptions,
3749
} from './hydration'
3850
export { Mutation } from './mutation'
3951
export type { MutationState } from './mutation'
4052
export type { QueriesObserverOptions } from './queriesObserver'
4153
export { Query } from './query'
4254
export type { QueryState } from './query'
4355
export * from './types'
44-

0 commit comments

Comments
 (0)