We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 854b7cb commit 769795fCopy full SHA for 769795f
src/lib/seam/use-seam-query-result.ts
@@ -1,7 +1,9 @@
1
import type { SeamHttpApiError } from '@seamapi/http/connect'
2
import type { UseQueryResult } from '@tanstack/react-query'
3
4
-export type UseSeamQueryResultLegacy<Field extends string, ResponsePayload> = Omit<
5
- UseQueryResult<ResponsePayload, SeamHttpApiError>,
6
- 'data'
7
-> & { [key in Field]?: ResponsePayload }
+export type UseSeamQueryResultLegacy<
+ Field extends string,
+ ResponsePayload,
+> = Omit<UseQueryResult<ResponsePayload, SeamHttpApiError>, 'data'> & {
8
+ [key in Field]?: ResponsePayload
9
+}
0 commit comments