@hysc/meeting 5.0.57 → 5.0.58
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/esm/boom-meeting/src/BMStream/BMStreamModelVM.d.ts +2 -2
- package/esm/index.js +2 -2
- package/esm/index.js.map +2 -2
- package/esm/src/BMRoom/BMRoom.d.ts +687 -687
- package/esm/src/BMStream/BMStreamModelVM.d.ts +2 -2
- package/esm/utils/ErrorTypes.d.ts +1 -1
- package/package.json +3 -3
- package/umd/boom-meeting/src/BMStream/BMStreamModelVM.d.ts +2 -2
- package/umd/index.js +2 -2
- package/umd/src/BMRoom/BMRoom.d.ts +14 -13
- package/umd/utils/ErrorTypes.d.ts +1 -1
|
@@ -163,7 +163,7 @@ export default class BMStreamModelVM {
|
|
|
163
163
|
* @private
|
|
164
164
|
*/
|
|
165
165
|
private createStreamAndPublish;
|
|
166
|
-
publishBloudStream(audio: boolean, video: boolean): void
|
|
166
|
+
publishBloudStream(audio: boolean, video: boolean): Promise<void>;
|
|
167
167
|
muteHandler(type: 'video' | 'audio'): Promise<void>;
|
|
168
168
|
unpublishStream(): Promise<void>;
|
|
169
169
|
/**
|
|
@@ -186,7 +186,7 @@ export default class BMStreamModelVM {
|
|
|
186
186
|
* @param opts.contentHint 视频的contentHint 可选值: '' | 'motion' | 'detail' | 'text'
|
|
187
187
|
*/
|
|
188
188
|
toggleShareScreen(enable: boolean, opts: any, customShare?: Result): Promise<boolean>;
|
|
189
|
-
setShareScreenContentHint(contentHint: '' | 'motion' | 'detail' | 'text'):
|
|
189
|
+
setShareScreenContentHint(contentHint: '' | 'motion' | 'detail' | 'text'): void;
|
|
190
190
|
updateModelSort: any;
|
|
191
191
|
handleNoContainer: (info: NoPlayerContainer) => void;
|
|
192
192
|
/**
|