@hysc/meeting 5.0.51 → 5.0.53

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.
@@ -125,7 +125,6 @@ export default class BMRoom {
125
125
  */
126
126
  setShouldPlayAudio(value: boolean): void;
127
127
  handleReprocessStreamError: () => void;
128
- handleReprocessShareStreamError: () => void;
129
128
  initAudioPlayer(playerContainerId: string): void;
130
129
  /**
131
130
  * 初始化底层会控相关
@@ -7,9 +7,8 @@
7
7
  */
8
8
  export declare class BoomError extends Error {
9
9
  readonly boom_error_flag_ = "__BOOM_ERROR___";
10
- private readonly code;
10
+ code: number;
11
11
  message: string;
12
- private readonly eName?;
13
12
  constructor(code: number, message: string | object, name?: string);
14
13
  /**
15
14
  * 返回的是一个JSON 的 字符串,可以通过JSON.parse 解析
@@ -17,5 +16,4 @@ export declare class BoomError extends Error {
17
16
  toString(): string;
18
17
  getCode(): number;
19
18
  getMessage(): string;
20
- getErrorName(): string | undefined;
21
19
  }