File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,11 @@ export type UseFetch<
246
246
> (
247
247
request : Ref < Path > | Path | ( ( ) => Path ) ,
248
248
...opts : HasRequiredProperties <
249
- Headers & Query & PathParams & Body & GetMethodProp < MethodOptions , Method >
249
+ Headers &
250
+ Query &
251
+ PathParams &
252
+ Body &
253
+ GetMethodProp < MethodOptions , MethodLiteral >
250
254
> extends true
251
255
? [
252
256
opts : UntypedUseLazyFetchOptions <
@@ -261,7 +265,7 @@ export type UseFetch<
261
265
Query &
262
266
PathParams &
263
267
Body &
264
- GetMethodProp < MethodOptions , Method >
268
+ GetMethodProp < MethodOptions , MethodLiteral >
265
269
> ,
266
270
]
267
271
: [
@@ -277,7 +281,7 @@ export type UseFetch<
277
281
Query &
278
282
PathParams &
279
283
Body &
280
- GetMethodProp < MethodOptions , Method >
284
+ GetMethodProp < MethodOptions , MethodLiteral >
281
285
> ,
282
286
]
283
287
) => AsyncData <
You can’t perform that action at this time.
0 commit comments