From f09311d7170105805a9d352a12216b9da77fe83c Mon Sep 17 00:00:00 2001 From: Andre van Tonder Date: Wed, 6 Mar 2024 22:59:21 +1000 Subject: [PATCH] fix(nuxt): export `AsyncDataRequestStatus` type (#26023) --- packages/nuxt/src/app/composables/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nuxt/src/app/composables/index.ts b/packages/nuxt/src/app/composables/index.ts index 92a6960a5..784ded227 100644 --- a/packages/nuxt/src/app/composables/index.ts +++ b/packages/nuxt/src/app/composables/index.ts @@ -14,7 +14,7 @@ export { export { defineNuxtComponent } from './component' export { useAsyncData, useLazyAsyncData, useNuxtData, refreshNuxtData, clearNuxtData } from './asyncData' -export type { AsyncDataOptions, AsyncData } from './asyncData' +export type { AsyncDataOptions, AsyncData, AsyncDataRequestStatus } from './asyncData' export { useHydration } from './hydrate' export { callOnce } from './once' export { useState, clearNuxtState } from './state'