mirror of
https://github.com/danbulant/discord.js
synced 2026-06-07 16:52:16 +00: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:
parent
53a1f8fcd4
commit
45cd58b68c
1 changed files with 2 additions and 1 deletions
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;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue