@hysc/meeting 10.2.9 → 10.3.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.mts CHANGED
@@ -328,7 +328,7 @@ declare class BMStreamModelVM {
328
328
  * @private
329
329
  */
330
330
  private muteOrUnpublishStream;
331
- toggleShareScreen(enable: boolean, opts: any, customShare?: Result): Promise<boolean>;
331
+ toggleShareScreen(enable: boolean, opts?: any, customShare?: Result): Promise<boolean>;
332
332
  setShareScreenContentHint(contentHint: '' | 'motion' | 'detail' | 'text'): void;
333
333
  updateModelSort: lodash_es.DebouncedFunc<() => void>;
334
334
  handleNoContainer: (info: NoPlayerContainer) => void;
@@ -1845,6 +1845,7 @@ declare class BMRoom {
1845
1845
  * @param sig
1846
1846
  */
1847
1847
  setSig(sig: string): void;
1848
+ private benchmark;
1848
1849
  /**
1849
1850
  * 初始化输入设备
1850
1851
  */
@@ -2008,13 +2009,13 @@ declare class BMRoom {
2008
2009
  *
2009
2010
  * @returns 设备列表
2010
2011
  */
2011
- enumAudioInputDevices: typeof BRTC.enumAudioInputDevices;
2012
+ enumAudioInputDevices: () => Promise<Device[]>;
2012
2013
  /**
2013
2014
  * 枚举音频输出设备
2014
2015
  *
2015
2016
  * @returns 设备列表
2016
2017
  */
2017
- enumAudioOutputDevices: typeof BRTC.enumAudioOutputDevices;
2018
+ enumAudioOutputDevices: () => Promise<Device[]>;
2018
2019
  /**
2019
2020
  * 检查音视频权限
2020
2021
  */
package/dist/index.d.ts CHANGED
@@ -328,7 +328,7 @@ declare class BMStreamModelVM {
328
328
  * @private
329
329
  */
330
330
  private muteOrUnpublishStream;
331
- toggleShareScreen(enable: boolean, opts: any, customShare?: Result): Promise<boolean>;
331
+ toggleShareScreen(enable: boolean, opts?: any, customShare?: Result): Promise<boolean>;
332
332
  setShareScreenContentHint(contentHint: '' | 'motion' | 'detail' | 'text'): void;
333
333
  updateModelSort: lodash_es.DebouncedFunc<() => void>;
334
334
  handleNoContainer: (info: NoPlayerContainer) => void;
@@ -1845,6 +1845,7 @@ declare class BMRoom {
1845
1845
  * @param sig
1846
1846
  */
1847
1847
  setSig(sig: string): void;
1848
+ private benchmark;
1848
1849
  /**
1849
1850
  * 初始化输入设备
1850
1851
  */
@@ -2008,13 +2009,13 @@ declare class BMRoom {
2008
2009
  *
2009
2010
  * @returns 设备列表
2010
2011
  */
2011
- enumAudioInputDevices: typeof BRTC.enumAudioInputDevices;
2012
+ enumAudioInputDevices: () => Promise<Device[]>;
2012
2013
  /**
2013
2014
  * 枚举音频输出设备
2014
2015
  *
2015
2016
  * @returns 设备列表
2016
2017
  */
2017
- enumAudioOutputDevices: typeof BRTC.enumAudioOutputDevices;
2018
+ enumAudioOutputDevices: () => Promise<Device[]>;
2018
2019
  /**
2019
2020
  * 检查音视频权限
2020
2021
  */