@hysc/meeting 4.0.53 → 4.0.55

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.
@@ -303,7 +303,7 @@ export default class BMRoom {
303
303
  * @param options 订阅选项
304
304
  * @returns
305
305
  */
306
- subscribe(remoteStream: SingleRemoteStream, options?: SubscribeOptions): Promise<void>;
306
+ subscribe(remoteStream: SingleRemoteStream, options?: SubscribeOptions): Promise<any>;
307
307
  /**
308
308
  * 取消订阅远端流
309
309
  *
@@ -589,6 +589,7 @@ export default class BMRoom {
589
589
  /**
590
590
  * 处理流出现connect-error的逻辑,本地流需要重新推流,远端流需要重新拉流
591
591
  * @param event
592
+ * @param failed
592
593
  */
593
594
  private handleStreamConnectError;
594
595
  /**
@@ -640,6 +641,7 @@ export default class BMRoom {
640
641
  queueProcessor: any;
641
642
  handleAddStreams(streams: SingleRemoteStream[]): void;
642
643
  queryBrtcStreams(uids: string[]): Promise<any>;
644
+ getForceUser(forceId: string): Promise<void>;
643
645
  getVersion(): string;
644
646
  }
645
647
  export {};