Files
recipe-app/frontend/node_modules/next/dist/client/dev/debug-channel.d.ts
T
2026-04-09 09:14:39 +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;
};