diff --git a/packages/nuxt3/src/app/composables/fetch.ts b/packages/nuxt3/src/app/composables/fetch.ts index 1430ddb28b..ba8777be36 100644 --- a/packages/nuxt3/src/app/composables/fetch.ts +++ b/packages/nuxt3/src/app/composables/fetch.ts @@ -1,11 +1,11 @@ -import type { FetchOptions } from 'ohmyfetch' +import type { FetchOptions, FetchRequest } from 'ohmyfetch' import type { $Fetch } from '@nuxt/nitro' import { murmurHashV3 } from 'murmurhash-es' import type { AsyncDataOptions, _Transform, KeyOfRes } from './asyncData' import { useAsyncData } from './asyncData' export type Awaited = T extends Promise ? U : T -export type FetchResult = Awaited>> +export type FetchResult = Awaited>> export type UseFetchOptions< DataT,