We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2da38a7 commit 7b081c5Copy full SHA for 7b081c5
2 files changed
src/stream-node.d.ts
@@ -12,8 +12,8 @@ interface PipeableStream {
12
pipe: (writable: WritableStream) => void;
13
}
14
15
-export function renderToPipeableStream(
16
- vnode: VNode,
+export function renderToPipeableStream<P = {}>(
+ vnode: VNode<P>,
17
options: RenderToPipeableStreamOptions,
18
context?: any
19
): PipeableStream;
src/stream.d.ts
@@ -4,7 +4,7 @@ interface RenderStream extends ReadableStream<Uint8Array> {
4
allReady: Promise<void>;
5
6
7
-export function renderToReadableStream(
8
+export function renderToReadableStream<P = {}>(
9
10
): RenderStream;
0 commit comments