dingrtc 3.8.18 → 3.8.19-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.umd.js +3 -12
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1853,12 +1853,14 @@ interface SubscriptionOptions {
|
|
|
1853
1853
|
* @internal
|
|
1854
1854
|
*/
|
|
1855
1855
|
declare class Subscription extends EventEmitter<ISubscribeEvents> {
|
|
1856
|
+
static subIdAcc: number;
|
|
1856
1857
|
stream: signal_msg.IStream;
|
|
1857
1858
|
resolutionInfo: ResolutionInfo$1;
|
|
1858
1859
|
ssrc: number;
|
|
1859
1860
|
private startTime;
|
|
1860
1861
|
uid: string;
|
|
1861
1862
|
id: string;
|
|
1863
|
+
private subIdAcc;
|
|
1862
1864
|
state: PubSubStates;
|
|
1863
1865
|
private monitor;
|
|
1864
1866
|
userConfigResolution: ResolutionInfo$1;
|
|
@@ -1874,6 +1876,9 @@ declare class Subscription extends EventEmitter<ISubscribeEvents> {
|
|
|
1874
1876
|
transceiver: RTCRtpTransceiver;
|
|
1875
1877
|
transceivers?: RTCRtpTransceiver[];
|
|
1876
1878
|
constructor(options: SubscriptionOptions);
|
|
1879
|
+
private logTrackEnded;
|
|
1880
|
+
private logTrackUnmute;
|
|
1881
|
+
private logTrackMute;
|
|
1877
1882
|
private handleStreamAdd;
|
|
1878
1883
|
get mediaStream(): MediaStream;
|
|
1879
1884
|
stop(): Promise<void | signal_msg.IResponse>;
|
|
@@ -2212,7 +2217,7 @@ declare class DingRTCClient extends EventEmitter<IClientEvents> {
|
|
|
2212
2217
|
* @param {UnsubscribeParam[]} batchUnsubscribeParam
|
|
2213
2218
|
* @returns void
|
|
2214
2219
|
*/
|
|
2215
|
-
batchUnsubscribe(batchUnsubscribeParam: UnsubscribeParam[]): Promise<void
|
|
2220
|
+
batchUnsubscribe(batchUnsubscribeParam: UnsubscribeParam[]): Promise<void | IBatchSubscribeResult[]>;
|
|
2216
2221
|
/**
|
|
2217
2222
|
* 获取本地音频相关信息。
|
|
2218
2223
|
*/
|