@zegocloud/zego-uikit-prebuilt 2.13.0 → 2.13.2-beta
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/index.d.ts +7 -0
- package/package.json +1 -1
- package/zego-uikit-prebuilt.js +1 -1
package/index.d.ts
CHANGED
|
@@ -209,6 +209,13 @@ declare interface ZegoCloudRoomConfig {
|
|
|
209
209
|
showWaitingCallAcceptAudioVideoView?: boolean;
|
|
210
210
|
// Configure the call invitation list during a call
|
|
211
211
|
callingInvitationListConfig?: CallingInvitationListConfig;
|
|
212
|
+
// 2.13.1
|
|
213
|
+
// Overall video screen configuration
|
|
214
|
+
videoScreenConfig?: {
|
|
215
|
+
objectFit?: "cover" | "contain" | "fill" // 视频画面显示模式,默认 "contain"
|
|
216
|
+
}
|
|
217
|
+
// Send Message Response
|
|
218
|
+
onSendMessageResult?: (response: { errCode: number, message: string, timestamp?: string }) => void
|
|
212
219
|
}
|
|
213
220
|
|
|
214
221
|
export enum RightPanelExpandedType {
|