dingrtc 3.9.0 → 3.9.1
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 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -2
- package/dist/index.umd.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2430,7 +2430,13 @@ declare class ServiceManager extends EventEmitter<ChannelEvens> {
|
|
|
2430
2430
|
subscribedAudioStream: string;
|
|
2431
2431
|
micMixedGroups: Set<string>;
|
|
2432
2432
|
iceConfig: ICEConfig;
|
|
2433
|
+
/**
|
|
2434
|
+
* 正在处理的订阅参数,防止订阅重复
|
|
2435
|
+
*/
|
|
2436
|
+
private processingSubParamsMap;
|
|
2437
|
+
private static subAcc;
|
|
2433
2438
|
constructor(client: DingRTCClient, reporter: Reporter);
|
|
2439
|
+
private getSubTraceId;
|
|
2434
2440
|
get publishedLocalTracks(): LocalTrack[];
|
|
2435
2441
|
get groups(): Group[];
|
|
2436
2442
|
handleStreamEvent(action: StreamEventAction, payload: StreamEventPlayload): void;
|