@hysc/meeting 1.6.44 → 2.6.44
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import BoomCore from '@hysc/core/esm';
|
|
2
2
|
import BMStreamModelVM from "../BMStream/BMStreamModelVM";
|
|
3
3
|
import BMRoom from './BMRoom';
|
|
4
|
+
import { SingleRemoteStream } from '../type';
|
|
4
5
|
import BMUserVM from "../BMUser/BMUserVM";
|
|
5
6
|
import BMChatVM from '../BMChat/BMChatVM';
|
|
6
7
|
import BMStreamModel from "../BMStream/BMStreamModel";
|
|
@@ -22,6 +23,7 @@ export declare enum MessageType {
|
|
|
22
23
|
*/
|
|
23
24
|
AUDIO_FORCE_CHANGE = "audio-force-change"
|
|
24
25
|
}
|
|
26
|
+
export declare function getStreamFromBrtcStreamMap(remoteStream: SingleRemoteStream): import("@hysc/core/esm/BoomAdapter/singleMode/stream/RemoteStream").default | undefined;
|
|
25
27
|
export declare function attachBRTCEvent(boomCore: BoomCore, bmStreamVm: BMStreamModelVM, userVM: BMUserVM): void;
|
|
26
28
|
export declare function attachEvents(boomCore: BoomCore, userVM: BMUserVM, bmStreamVm: BMStreamModelVM, chatVM: BMChatVM, bmRoom: BMRoom): any;
|
|
27
29
|
export declare function checkStreamIsNormal(streamModel: BMStreamModel | undefined): void;
|
|
@@ -23,6 +23,8 @@ 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
|
+
export declare function transShareScreen2User(userId: string): string;
|
|
27
|
+
export declare const pubFailedStreamMap: Map<string, import("@hysc/core/esm/BoomAdapter/singleMode/stream/RemoteStream").default>;
|
|
26
28
|
/**
|
|
27
29
|
* 全量的brtc流记录,把所有brtc用户推的流都做记录
|
|
28
30
|
* stream-added 的时候添加
|