dingrtc 3.9.22 → 3.9.24
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.ts +2 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.umd.js +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _dingrtc_shared from '@dingrtc/shared';
|
|
2
|
-
import { EventEmitter, Reporter, ILogger, VideoSendReport, AudioSendReport, VideoReceiveReport, AudioReceiveReport, AudioNetEQReport, BweReport, AudioDeviceBufferReport, DingRTCError, PromiseLikeObject, ResolutionInfo as ResolutionInfo$1, TrackMediaType as TrackMediaType$1 } from '@dingrtc/shared';
|
|
2
|
+
import { EventEmitter, Reporter, ILogger, VideoSendReport, AudioSendReport, VideoReceiveReport, AudioReceiveReport, AudioNetEQReport, BweReport, AudioDeviceBufferReport, DingRTCError, PromiseLikeObject, ResolutionInfo as ResolutionInfo$1, TrackMediaType as TrackMediaType$1, VideoSourceInfo as VideoSourceInfo$1 } from '@dingrtc/shared';
|
|
3
3
|
export { ErrorCodeAndMsgMap } from '@dingrtc/shared';
|
|
4
4
|
import * as _dingrtc_channel from '@dingrtc/channel';
|
|
5
5
|
import { DingRTCChannel, JoinParam as JoinParam$1, ISignal_msg, UserEventAction as UserEventAction$1 } from '@dingrtc/channel';
|
|
@@ -2528,6 +2528,7 @@ declare class ServiceManager extends EventEmitter<ChannelEvens> {
|
|
|
2528
2528
|
setGroupProperties(groupId: string, properties: signal_msg.IGroupProperty): Promise<signal_msg.ISetGroupPropertiesResponse>;
|
|
2529
2529
|
publishToGroup(groupId?: string, autoUnpublishFromChannel?: boolean): Promise<void>;
|
|
2530
2530
|
unpublishFromGroup(groupId: string, autoPublishToChannel?: boolean): Promise<void>;
|
|
2531
|
+
onAnnotationOperation: (startOrStop: "annotation-start" | "annotation-stop", id: string, sourceType: VideoSourceInfo$1.SCREENCAST | VideoSourceInfo$1.CAMERA) => Promise<void>;
|
|
2531
2532
|
}
|
|
2532
2533
|
|
|
2533
2534
|
/**
|