Files
novarix.uk/node_modules/next/dist/client/dev/debug-channel.d.ts
T
Kismet Hasanaj 39a8a128be including-modules
2026-05-03 00:14:08 +02:00

10 lines
446 B
TypeScript

export interface DebugChannelReadableWriterPair {
readonly readable: ReadableStream<Uint8Array>;
readonly writer: WritableStreamDefaultWriter<Uint8Array>;
}
export declare function getOrCreateDebugChannelReadableWriterPair(requestId: string): DebugChannelReadableWriterPair;
export declare function createDebugChannel(requestHeaders: Record<string, string> | undefined): {
writable?: WritableStream;
readable?: ReadableStream;
};