@hysc/meeting 5.0.40 → 5.0.42
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 -1
- package/esm/index.js +2 -2
- package/esm/index.js.map +2 -2
- package/esm/src/BMRoom/BMRoom.d.ts +686 -686
- package/esm/src/BMStream/BMStreamModelVM.d.ts +2 -1
- package/package.json +3 -3
- package/umd/boom-meeting/src/BMStream/BMStreamModelVM.d.ts +2 -1
- package/umd/index.js +2 -2
- package/umd/src/BMRoom/BMRoom.d.ts +7 -0
|
@@ -23,6 +23,7 @@ import { Device } from '@hysc/core/esm/BoomAdapter/type/value';
|
|
|
23
23
|
import BMSpeaker from './BMSpeaker';
|
|
24
24
|
import { ShareMediaOptions } from "@hysc/core/esm/BoomCore/BCClient/BCClient";
|
|
25
25
|
import { getHTMLMediaStreamOptions, Result, getMediaStreamInfo } from "./getHTMLMediaStreamOptions";
|
|
26
|
+
import { BloudStream } from '@hysc/core';
|
|
26
27
|
export declare function transShareScreen2User(userId: string): string;
|
|
27
28
|
export default class BMStreamModelVM {
|
|
28
29
|
streamModels: Map<string, BMStreamModel>;
|
|
@@ -35,7 +36,7 @@ export default class BMStreamModelVM {
|
|
|
35
36
|
localStreamErrorWatcher: Subject<string>;
|
|
36
37
|
localModel: BMStreamModel | null;
|
|
37
38
|
room: BMRoom | null;
|
|
38
|
-
bloudStream:
|
|
39
|
+
bloudStream: BloudStream | null;
|
|
39
40
|
brtcStream: SingleLocalStream | undefined;
|
|
40
41
|
/**
|
|
41
42
|
* 后面打开摄像头存储的流,主要是关闭摄像头的时候得把它清除掉
|