UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

11 lines (10 loc) 433 B
export { getHttpRequestAsyncStore }; export { installHttpRequestAsyncStore }; type HttpRequestAsyncStore = { httpRequestId: number; shouldErrorBeSwallowed: (err: unknown) => boolean; markErrorAsLogged: (err: unknown) => void; errorDebugNoteAlreadyShown: boolean; }; declare function installHttpRequestAsyncStore(): Promise<void>; declare function getHttpRequestAsyncStore(): null | undefined | HttpRequestAsyncStore;