mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 12:03:31 +01:00
StreamDispatcher documented as extending WritableStream, not stream.Writable
This commit is contained in:
@@ -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(
|
||||||
|
|||||||
Reference in New Issue
Block a user