mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 19:43:29 +01:00
types(VoiceBroadcast): add subscribers property (#3677)
* types(VoiceBroadcast): add subscribers property * types(VoiceBroadcast): change player property to private Co-Authored-By: Amish Shah <amishshah.2k@gmail.com> Co-authored-by: Amish Shah <amishshah.2k@gmail.com>
This commit is contained in:
3
typings/index.d.ts
vendored
3
typings/index.d.ts
vendored
@@ -1475,7 +1475,8 @@ declare module 'discord.js' {
|
|||||||
class VoiceBroadcast extends EventEmitter {
|
class VoiceBroadcast extends EventEmitter {
|
||||||
constructor(client: Client);
|
constructor(client: Client);
|
||||||
public client: Client;
|
public client: Client;
|
||||||
public dispatchers: StreamDispatcher[];
|
public subscribers: StreamDispatcher[];
|
||||||
|
private player: BroadcastAudioPlayer;
|
||||||
public readonly dispatcher: BroadcastDispatcher;
|
public readonly dispatcher: BroadcastDispatcher;
|
||||||
public play(input: string | Readable, options?: StreamOptions): BroadcastDispatcher;
|
public play(input: string | Readable, options?: StreamOptions): BroadcastDispatcher;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user