mirror of
https://github.com/danbulant/discord.js
synced 2026-06-08 09:13:22 +00:00
StreamDispatcher documented as extending WritableStream, not stream.Writable
This commit is contained in:
parent
995cd181c9
commit
8efafb6a43
1 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ const nonce = Buffer.alloc(24);
|
||||||
nonce.fill(0);
|
nonce.fill(0);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @external Stream.writable
|
* @external WritableStream
|
||||||
* @see {@link https://nodejs.org/api/stream.html#stream_class_stream_writable}
|
* @see {@link https://nodejs.org/api/stream.html#stream_class_stream_writable}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
@ -26,7 +26,7 @@ nonce.fill(0);
|
||||||
* });
|
* });
|
||||||
* ```
|
* ```
|
||||||
* @implements {VolumeInterface}
|
* @implements {VolumeInterface}
|
||||||
* @extends {stream.Writable}
|
* @extends {WritableStream}
|
||||||
*/
|
*/
|
||||||
class StreamDispatcher extends Writable {
|
class StreamDispatcher extends Writable {
|
||||||
constructor(
|
constructor(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue