mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 19:08:15 +00:00
updating docs
This commit is contained in:
parent
0bb1445f99
commit
60e30018f1
1 changed files with 6 additions and 1 deletions
7
cli/tsc/dts/lib.webworker.d.ts
vendored
7
cli/tsc/dts/lib.webworker.d.ts
vendored
|
@ -660,7 +660,12 @@ interface RTCEncodedVideoFrameMetadata {
|
|||
* @category Streams
|
||||
*/
|
||||
interface ReadableStreamGetReaderOptions {
|
||||
mode?: ReadableStreamReaderMode;
|
||||
/**
|
||||
* Creates a ReadableStreamBYOBReader and locks the stream to the new reader.
|
||||
*
|
||||
* This call behaves the same way as the no-argument variant, except that it only works on readable byte streams, i.e. streams which were constructed specifically with the ability to handle "bring your own buffer" reading. The returned BYOB reader provides the ability to directly read individual chunks from the stream via its read() method, into developer-supplied buffers, allowing more precise control over allocation.
|
||||
*/
|
||||
mode?: ReadableStreamReaderMode;
|
||||
}
|
||||
|
||||
interface ReadableStreamIteratorOptions {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue