File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 11import type { ReadableStream } from "node:stream/web" ;
22
3- import type { InternalEvent , InternalResult , WaitUntil } from "types/open-next" ;
3+ import type { InternalEvent , InternalResult } from "types/open-next" ;
44import { runWithOpenNextRequestContext } from "utils/promise" ;
55import { emptyReadableStream } from "utils/stream" ;
66
7+ import type { OpenNextHandlerOptions } from "types/overrides" ;
78// We import it like that so that the edge plugin can replace it
89import { NextConfig } from "../adapters/config" ;
910import { createGenericHandler } from "../core/createGenericHandler" ;
1011import {
1112 convertBodyToReadableStream ,
1213 convertToQueryString ,
1314} from "../core/routing/util" ;
14- import type { OpenNextHandlerOptions } from "types/overrides" ;
1515
1616globalThis . __openNextAls = new AsyncLocalStorage ( ) ;
1717
Original file line number Diff line number Diff line change @@ -73,7 +73,6 @@ async function awaitAllDetachedPromise() {
7373}
7474
7575function provideNextAfterProvider ( ) {
76- /** This should be considered unstable until `unstable_after` is stabilized. */
7776 const NEXT_REQUEST_CONTEXT_SYMBOL = Symbol . for ( "@next/request-context" ) ;
7877
7978 // This is needed by some lib that relies on the vercel request context to properly await stuff.
You can’t perform that action at this time.
0 commit comments