From 45cd58b68ce61afcf44793e610f06ada44fb8d1f Mon Sep 17 00:00:00 2001 From: Ayyan Lewis Date: Mon, 13 Jan 2020 21:01:16 +0400 Subject: [PATCH] types(VoiceBroadcast): add subscribers property (#3677) * types(VoiceBroadcast): add subscribers property * types(VoiceBroadcast): change player property to private Co-Authored-By: Amish Shah Co-authored-by: Amish Shah --- typings/index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index c217cdcbf..3d55cb97e 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1475,7 +1475,8 @@ declare module 'discord.js' { class VoiceBroadcast extends EventEmitter { constructor(client: Client); public client: Client; - public dispatchers: StreamDispatcher[]; + public subscribers: StreamDispatcher[]; + private player: BroadcastAudioPlayer; public readonly dispatcher: BroadcastDispatcher; public play(input: string | Readable, options?: StreamOptions): BroadcastDispatcher;