mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 12:33:30 +01:00
Add @extends to some classes
This commit is contained in:
@@ -3,6 +3,7 @@ const StreamDispatcher = require('./StreamDispatcher');
|
|||||||
/**
|
/**
|
||||||
* The class that sends voice packet data to the voice connection.
|
* The class that sends voice packet data to the voice connection.
|
||||||
* @implements {VolumeInterface}
|
* @implements {VolumeInterface}
|
||||||
|
* @extends {StreamDispatcher}
|
||||||
*/
|
*/
|
||||||
class BroadcastDispatcher extends StreamDispatcher {
|
class BroadcastDispatcher extends StreamDispatcher {
|
||||||
constructor(player, options, streams) {
|
constructor(player, options, streams) {
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ const BasePlayer = require('./BasePlayer');
|
|||||||
/**
|
/**
|
||||||
* An Audio Player for a Voice Connection.
|
* An Audio Player for a Voice Connection.
|
||||||
* @private
|
* @private
|
||||||
* @extends {EventEmitter}
|
* @extends {BasePlayer}
|
||||||
*/
|
*/
|
||||||
class AudioPlayer extends BasePlayer {
|
class AudioPlayer extends BasePlayer {
|
||||||
constructor(voiceConnection) {
|
constructor(voiceConnection) {
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ const BasePlayer = require('./BasePlayer');
|
|||||||
/**
|
/**
|
||||||
* An Audio Player for a Voice Connection.
|
* An Audio Player for a Voice Connection.
|
||||||
* @private
|
* @private
|
||||||
* @extends {EventEmitter}
|
* @extends {BasePlayer}
|
||||||
*/
|
*/
|
||||||
class AudioPlayer extends BasePlayer {
|
class AudioPlayer extends BasePlayer {
|
||||||
constructor(broadcast) {
|
constructor(broadcast) {
|
||||||
|
|||||||
Reference in New Issue
Block a user