From 119d220c2e6324dd2233d8f93868fcaa1ae229fd Mon Sep 17 00:00:00 2001 From: Aleksander Guryanov Date: Tue, 9 Feb 2021 20:33:23 +0700 Subject: [PATCH] Update janus.d.ts (#2553) Function getBitrate() actually returns a string --- npm/janus.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm/janus.d.ts b/npm/janus.d.ts index f81736e4ee..bbd6cf017d 100644 --- a/npm/janus.d.ts +++ b/npm/janus.d.ts @@ -156,7 +156,7 @@ declare namespace JanusJS { isVideoMuted(): boolean; muteVideo(): void; unmuteVideo(): void; - getBitrate(): number; + getBitrate(): string; hangup(sendRequest?: boolean): void; detach(params: any): void; }