File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 2
2
# Do not edit manually. Check into git.
3
3
1743012861-240:01
4
4
1743177835- 35:05
5
- 1747765507- 11:36
5
+ 1747765507- 13:40
6
+ 1747767368- 0:00
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " trpc-svelte-query" ,
3
- "version" : " 3.0.2 " ,
3
+ "version" : " 3.0.3 " ,
4
4
"description" : " Use tRPC with SvelteKit and Tanstack Query (full SSR support)" ,
5
5
"author" : " Ottomated" ,
6
6
"license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -82,9 +82,9 @@ export type QueryUtils<TDef extends ResolverDef> = {
82
82
) => TDef [ 'output' ] | undefined ;
83
83
} ;
84
84
85
- type ExtractCursorType < TInput > = NonNullable <
86
- TInput extends { cursor ?: any } ? TInput [ 'cursor' ] : unknown
87
- > ;
85
+ type ExtractCursorType < TInput > = TInput extends { cursor ?: any }
86
+ ? TInput [ 'cursor' ]
87
+ : unknown ;
88
88
89
89
export type InfiniteQueryUtils < TDef extends ResolverDef > = QueryUtils < TDef > & {
90
90
prefetchInfinite : (
You can’t perform that action at this time.
0 commit comments