UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

5 lines 199 B
//#region src/app/composables/asyncContext.d.ts /** @since 3.8.0 */ declare function withAsyncContext(fn: () => PromiseLike<unknown>): [unknown, () => void]; //#endregion export { withAsyncContext };