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 0df90a8 commit d6c70f7Copy full SHA for d6c70f7
docs/plugins/stream.md
@@ -41,11 +41,13 @@ new Elysia()
41
42
By default, `Stream` will return `Response` with `content-type` of `text/event-stream; charset=utf8`.
43
44
-You can pass `Iterable` or `AsyncIterable` to `Stream` to stream content back to client.
45
-
46
## Constructor
47
Below is the constructor parameter accept by `Stream`:
48
-- Automatic: Iterable / AsyncIterable
+- Automatic:
+ - Iterable
+ - AsyncIterable
49
+ - ReadableStream
50
+ - Response
51
- Manual: Callback of `(stream: this) => unknown` or `undefined`
52
53
## Method
0 commit comments