Skip to content

Commit 3c261c3

Browse files
ci: apply automated fixes
1 parent 569332e commit 3c261c3

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

packages/angular-query-persist-client/src/with-persist-query-client.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ import {
1616
persistQueryClientSubscribe,
1717
} from '@tanstack/query-persist-client-core'
1818
import type { PersistQueryClientOptions as PersistQueryClientOptionsCore } from '@tanstack/query-persist-client-core'
19-
import type { MaybePromise, PersistQueryClientFeature } from '@tanstack/angular-query-experimental'
19+
import type {
20+
MaybePromise,
21+
PersistQueryClientFeature,
22+
} from '@tanstack/angular-query-experimental'
2023

2124
type PersistQueryClientOptions = {
2225
persistOptions: Omit<PersistQueryClientOptionsCore, 'queryClient'>

packages/query-core/src/mutationCache.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import { Mutation } from './mutation'
33
import { matchMutation, noop } from './utils'
44
import { Subscribable } from './subscribable'
55
import type { MutationObserver } from './mutationObserver'
6-
import type { DefaultError, MaybePromise, MutationOptions, NotifyEvent } from './types'
6+
import type {
7+
DefaultError,
8+
MaybePromise,
9+
MutationOptions,
10+
NotifyEvent,
11+
} from './types'
712
import type { QueryClient } from './queryClient'
813
import type { Action, MutationState } from './mutation'
914
import type { MutationFilters } from './utils'

packages/react-query-persist-client/src/PersistQueryClientProvider.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ import {
77
} from '@tanstack/query-persist-client-core'
88
import { IsRestoringProvider, QueryClientProvider } from '@tanstack/react-query'
99
import type { PersistQueryClientOptions } from '@tanstack/query-persist-client-core'
10-
import type { MaybePromise, OmitKeyof, QueryClientProviderProps } from '@tanstack/react-query'
10+
import type {
11+
MaybePromise,
12+
OmitKeyof,
13+
QueryClientProviderProps,
14+
} from '@tanstack/react-query'
1115

1216
export type PersistQueryClientProviderProps = QueryClientProviderProps & {
1317
persistOptions: OmitKeyof<PersistQueryClientOptions, 'queryClient'>

0 commit comments

Comments
 (0)