@zegocloud/zego-uikit-prebuilt 1.5.2 → 1.5.3
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 +15 -1
- package/model/index.d.ts +65 -2
- package/modules/index.d.ts +9 -3
- package/modules/tools/UserListManager.d.ts +2 -2
- package/modules/tools/ZimManager.d.ts +54 -0
- package/package.json +1 -1
- package/view/index.d.ts +2 -0
- package/view/pages/ZegoBrowserCheck/index.d.ts +2 -2
- package/view/pages/ZegoBrowserCheckMobile/index.d.ts +2 -2
- package/view/pages/ZegoCallInvitation/callInvitationControl.d.ts +16 -0
- package/view/pages/ZegoCallInvitation/callInvitationDialog.d.ts +12 -0
- package/view/pages/ZegoCallInvitation/callInvitationWaiting.d.ts +14 -0
- package/view/pages/ZegoRoom/index.d.ts +1 -0
- package/view/pages/ZegoRoomMobile/index.d.ts +1 -0
- package/view/pages/context/showManage.d.ts +2 -1
- package/zego-uikit-prebuilt.js +159 -16
package/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Root } from "react-dom/client";
|
|
2
2
|
import { ZegoSuperBoardManager } from "zego-superboard-web";
|
|
3
|
-
import
|
|
3
|
+
import ZIM from "zego-zim-web";
|
|
4
|
+
import { LiveRole, LiveStreamingMode, ScenarioModel, VideoResolution, ZegoCallInvitationConfig, ZegoCloudRoomConfig, ZegoInvitationType, ZegoSignalingPluginNotificationConfig, ZegoUser } from "./model/index";
|
|
4
5
|
import { ZegoCloudRTCCore } from "./modules/index";
|
|
5
6
|
export declare class ZegoUIKitPrebuilt {
|
|
6
7
|
static core: ZegoCloudRTCCore | undefined;
|
|
@@ -17,6 +18,8 @@ export declare class ZegoUIKitPrebuilt {
|
|
|
17
18
|
static VideoResolution_480P: VideoResolution;
|
|
18
19
|
static VideoResolution_720P: VideoResolution;
|
|
19
20
|
static LiveStreamingMode: typeof LiveStreamingMode;
|
|
21
|
+
static InvitationTypeVoiceCall: ZegoInvitationType;
|
|
22
|
+
static InvitationTypeVideoCall: ZegoInvitationType;
|
|
20
23
|
private hasJoinedRoom;
|
|
21
24
|
root: Root | undefined;
|
|
22
25
|
static generateKitTokenForTest(appID: number, serverSecret: string, roomID: string, userID: string, userName?: string, ExpirationSeconds?: number): string;
|
|
@@ -24,7 +27,18 @@ export declare class ZegoUIKitPrebuilt {
|
|
|
24
27
|
static create(kitToken: string): ZegoUIKitPrebuilt;
|
|
25
28
|
addPlugins(plugins?: {
|
|
26
29
|
ZegoSuperBoardManager?: typeof ZegoSuperBoardManager;
|
|
30
|
+
ZIM?: typeof ZIM;
|
|
27
31
|
}): void;
|
|
28
32
|
joinRoom(roomConfig?: ZegoCloudRoomConfig): void;
|
|
29
33
|
destroy(): void;
|
|
34
|
+
setCallInvitationConfig(config?: ZegoCallInvitationConfig): void;
|
|
35
|
+
sendCallInvitation(params: {
|
|
36
|
+
invitees: ZegoUser[];
|
|
37
|
+
type: ZegoInvitationType;
|
|
38
|
+
timeout?: number;
|
|
39
|
+
data?: string;
|
|
40
|
+
notificationConfig?: ZegoSignalingPluginNotificationConfig;
|
|
41
|
+
}): Promise<{
|
|
42
|
+
errorInvitees: ZegoUser[];
|
|
43
|
+
}>;
|
|
30
44
|
}
|
package/model/index.d.ts
CHANGED
|
@@ -47,8 +47,16 @@ export interface ScenarioConfig {
|
|
|
47
47
|
};
|
|
48
48
|
}
|
|
49
49
|
export declare enum LiveStreamingMode {
|
|
50
|
-
|
|
51
|
-
|
|
50
|
+
/**
|
|
51
|
+
* @Deprecated StanderLive will be removed, please use LiveStreaming instead
|
|
52
|
+
*/
|
|
53
|
+
StanderLive = "LiveStreaming",
|
|
54
|
+
/**
|
|
55
|
+
* @Deprecated PremiumLive will be removed, please use InteractiveLiveStreaming instead
|
|
56
|
+
*/
|
|
57
|
+
PremiumLive = "InteractiveLiveStreaming",
|
|
58
|
+
LiveStreaming = "LiveStreaming",
|
|
59
|
+
InteractiveLiveStreaming = "InteractiveLiveStreaming",
|
|
52
60
|
RealTimeLive = "RealTimeLive"
|
|
53
61
|
}
|
|
54
62
|
export interface ZegoCloudRoomConfig {
|
|
@@ -98,14 +106,31 @@ export interface ZegoCloudRoomConfig {
|
|
|
98
106
|
videoResolutionDefault?: VideoResolution;
|
|
99
107
|
onLiveStart?: (user: ZegoUser) => void;
|
|
100
108
|
onLiveEnd?: (user: ZegoUser) => void;
|
|
109
|
+
/**
|
|
110
|
+
* @deprecated facingMode will be removed
|
|
111
|
+
* */
|
|
101
112
|
facingMode?: "user" | "environment";
|
|
113
|
+
/**
|
|
114
|
+
* @deprecated joinRoomCallback will be removed
|
|
115
|
+
* */
|
|
102
116
|
joinRoomCallback?: () => void;
|
|
117
|
+
/**
|
|
118
|
+
* @deprecated leaveRoomCallback will be removed
|
|
119
|
+
* */
|
|
103
120
|
leaveRoomCallback?: () => void;
|
|
121
|
+
/**
|
|
122
|
+
* @deprecated userUpdateCallback will be removed
|
|
123
|
+
* */
|
|
104
124
|
userUpdateCallback?: (updateType: "DELETE" | "ADD", userList: ZegoUser[]) => void;
|
|
125
|
+
/**
|
|
126
|
+
* @deprecated roomTimerDisplayed will be removed
|
|
127
|
+
* */
|
|
105
128
|
roomTimerDisplayed?: boolean;
|
|
106
129
|
whiteboardConfig?: {
|
|
107
130
|
showAddImageButton?: boolean;
|
|
131
|
+
showCreateAndCloseButton?: boolean;
|
|
108
132
|
};
|
|
133
|
+
autoLeaveRoomWhenOnlySelfInRoom?: boolean;
|
|
109
134
|
}
|
|
110
135
|
export interface ZegoBrowserCheckProp {
|
|
111
136
|
core: ZegoCloudRTCCore;
|
|
@@ -207,3 +232,41 @@ export declare enum CoreError {
|
|
|
207
232
|
notSupportCDNLive = 10001,
|
|
208
233
|
notSupportStandardLive = 10002
|
|
209
234
|
}
|
|
235
|
+
export declare enum ZegoInvitationType {
|
|
236
|
+
VoiceCall = 0,
|
|
237
|
+
VideoCall = 1
|
|
238
|
+
}
|
|
239
|
+
export interface ZegoCallInvitationConfig {
|
|
240
|
+
enableCustomCallInvitationWaitingPage?: boolean;
|
|
241
|
+
enableCustomCallInvitationDialog?: boolean;
|
|
242
|
+
enableNotifyWhenAppRunningInBackgroundOrQuit?: boolean;
|
|
243
|
+
onCallInvitationWaitingPageShowed?: (invitees: ZegoUser[], cancel: CancelCallInvitationFunc) => void;
|
|
244
|
+
onCallInvitationDialogShowed?: (type: ZegoInvitationType, inviter: ZegoUser, refuse: RefuseCallInvitationFunc, accept: AcceptCallInvitationFunc, data: string) => void;
|
|
245
|
+
onSetRoomConfigBeforeJoining?: (type: ZegoInvitationType) => ZegoCloudRoomConfig;
|
|
246
|
+
onCallInvitationEnded?: (reason: CallInvitationEndReason, data: string) => void;
|
|
247
|
+
}
|
|
248
|
+
export type CancelCallInvitationFunc = (data?: string) => void;
|
|
249
|
+
export type AcceptCallInvitationFunc = (data?: string) => void;
|
|
250
|
+
export type RefuseCallInvitationFunc = (data?: string) => void;
|
|
251
|
+
export interface CallInvitationInfo {
|
|
252
|
+
callID: string;
|
|
253
|
+
roomID: string;
|
|
254
|
+
inviter: ZegoUser;
|
|
255
|
+
invitees: ZegoUser[];
|
|
256
|
+
/** 已接受邀请的用户 */
|
|
257
|
+
acceptedInvitees: ZegoUser[];
|
|
258
|
+
type: ZegoInvitationType;
|
|
259
|
+
isGroupCall: boolean;
|
|
260
|
+
}
|
|
261
|
+
export declare enum CallInvitationEndReason {
|
|
262
|
+
Declined = "Declined",
|
|
263
|
+
Timeout = "Timeout",
|
|
264
|
+
Canceled = "Canceled",
|
|
265
|
+
Busy = "Busy",
|
|
266
|
+
LeaveRoom = "LeaveRoom"
|
|
267
|
+
}
|
|
268
|
+
export interface ZegoSignalingPluginNotificationConfig {
|
|
269
|
+
resourcesID?: string;
|
|
270
|
+
title?: string;
|
|
271
|
+
message?: string;
|
|
272
|
+
}
|
package/modules/index.d.ts
CHANGED
|
@@ -5,9 +5,12 @@ import { ZegoBroadcastMessageInfo } from "zego-express-engine-webrtm/sdk/code/zh
|
|
|
5
5
|
import { ZegoCloudRemoteMedia, ZegoCloudRoomConfig, ZegoUser } from "../model";
|
|
6
6
|
import { ZegoCloudUserList, ZegoCloudUserListManager } from "./tools/UserListManager";
|
|
7
7
|
import { ZegoSuperBoardManager, ZegoSuperBoardView } from "zego-superboard-web";
|
|
8
|
+
import ZIM from "zego-zim-web";
|
|
9
|
+
import { ZimManager } from "./tools/ZimManager";
|
|
8
10
|
export declare class ZegoCloudRTCCore {
|
|
9
11
|
static _instance: ZegoCloudRTCCore;
|
|
10
12
|
static _zg: ZegoExpressEngine;
|
|
13
|
+
_zimManager: ZimManager | null;
|
|
11
14
|
zum: ZegoCloudUserListManager;
|
|
12
15
|
_expressConfig: {
|
|
13
16
|
appID: number;
|
|
@@ -22,8 +25,8 @@ export declare class ZegoCloudRTCCore {
|
|
|
22
25
|
static getInstance(kitToken: string): ZegoCloudRTCCore;
|
|
23
26
|
status: {
|
|
24
27
|
loginRsp: boolean;
|
|
25
|
-
videoRefuse
|
|
26
|
-
audioRefuse
|
|
28
|
+
videoRefuse?: boolean;
|
|
29
|
+
audioRefuse?: boolean;
|
|
27
30
|
micDeviceID?: string;
|
|
28
31
|
cameraDeviceID?: string;
|
|
29
32
|
speakerDeviceID?: string;
|
|
@@ -50,8 +53,10 @@ export declare class ZegoCloudRTCCore {
|
|
|
50
53
|
get isCDNLive(): boolean;
|
|
51
54
|
addPlugins(plugins: {
|
|
52
55
|
ZegoSuperBoardManager?: typeof ZegoSuperBoardManager;
|
|
56
|
+
ZIM?: ZIM;
|
|
53
57
|
}): void;
|
|
54
58
|
setConfig(config: ZegoCloudRoomConfig): boolean;
|
|
59
|
+
private getLiveStreamingMode;
|
|
55
60
|
checkWebRTC(): Promise<boolean>;
|
|
56
61
|
setPin(userID?: string, pined?: boolean, stopUpdateUser?: boolean): void;
|
|
57
62
|
setMaxScreenNum(num: number, stopUpdateUser?: boolean): Promise<void>;
|
|
@@ -102,7 +107,7 @@ export declare class ZegoCloudRTCCore {
|
|
|
102
107
|
private onNetworkStatusQualityCallBack;
|
|
103
108
|
onNetworkStatusQuality(func: (roomID: string, level: number) => void): void;
|
|
104
109
|
private onRemoteUserUpdateCallBack;
|
|
105
|
-
onRemoteUserUpdate(func: (roomID: string, updateType: "DELETE" | "ADD", user: ZegoUser[]) => void): void;
|
|
110
|
+
onRemoteUserUpdate(func: (roomID: string, updateType: "DELETE" | "ADD", user: ZegoUser[], allUser: ZegoUser[]) => void): void;
|
|
106
111
|
private onSoundLevelUpdateCallBack;
|
|
107
112
|
onSoundLevelUpdate(func: (soundLevelList: ZegoSoundLevelInfo[]) => void): void;
|
|
108
113
|
private onRoomLiveStateUpdateCallBack;
|
|
@@ -119,4 +124,5 @@ export declare class ZegoCloudRTCCore {
|
|
|
119
124
|
onCoreError(func: (errCode: number, errMsg: string) => void): void;
|
|
120
125
|
leaveRoom(): void;
|
|
121
126
|
setStreamExtraInfo(streamID: string, extraInfo: string): Promise<ZegoServerResponse>;
|
|
127
|
+
private initZIM;
|
|
122
128
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ZegoExpressEngine } from "zego-express-engine-webrtc";
|
|
2
2
|
import { ZegoUser } from "zego-express-engine-webrtm/sdk/code/zh/ZegoExpressEntity.d";
|
|
3
3
|
import { LiveRole, LiveStreamingMode, ScenarioModel, ZegoCloudRemoteMedia } from "../../model";
|
|
4
|
-
export
|
|
5
|
-
export
|
|
4
|
+
export type ZegoCloudUserList = ZegoCloudUser[];
|
|
5
|
+
export type ZegoCloudUser = ZegoUser & {
|
|
6
6
|
pin: boolean;
|
|
7
7
|
overScreenMuteVideo?: boolean;
|
|
8
8
|
streamList: ZegoCloudRemoteMedia[];
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import ZIM from "zego-zim-web";
|
|
3
|
+
import { CallInvitationEndReason, CallInvitationInfo, ScenarioModel, ZegoCallInvitationConfig, ZegoCloudRoomConfig, ZegoInvitationType, ZegoSignalingPluginNotificationConfig, ZegoUser } from "../../model";
|
|
4
|
+
export declare class ZimManager {
|
|
5
|
+
_zim: ZIM | null;
|
|
6
|
+
isLogin: boolean;
|
|
7
|
+
isServiceActivated: boolean;
|
|
8
|
+
expressConfig: {
|
|
9
|
+
appID: number;
|
|
10
|
+
userID: string;
|
|
11
|
+
userName: string;
|
|
12
|
+
roomID: string;
|
|
13
|
+
token: string;
|
|
14
|
+
};
|
|
15
|
+
callInfo: CallInvitationInfo;
|
|
16
|
+
inSendOperation: boolean;
|
|
17
|
+
inRefuseOperation: boolean;
|
|
18
|
+
inAcceptOperation: boolean;
|
|
19
|
+
inCancelOperation: boolean;
|
|
20
|
+
config: ZegoCallInvitationConfig;
|
|
21
|
+
incomingTimer: NodeJS.Timer | null;
|
|
22
|
+
outgoingTimer: NodeJS.Timer | null;
|
|
23
|
+
constructor(ZIM: ZIM, expressConfig: {
|
|
24
|
+
appID: number;
|
|
25
|
+
userID: string;
|
|
26
|
+
userName: string;
|
|
27
|
+
roomID: string;
|
|
28
|
+
token: string;
|
|
29
|
+
});
|
|
30
|
+
private initListener;
|
|
31
|
+
private answeredTimeoutCallback;
|
|
32
|
+
sendInvitation(invitees: ZegoUser[], type: number, timeout: number, data: string, notificationConfig?: ZegoSignalingPluginNotificationConfig): Promise<{
|
|
33
|
+
errorInvitees: ZegoUser[];
|
|
34
|
+
}>;
|
|
35
|
+
cancelInvitation(data?: string): Promise<void>;
|
|
36
|
+
refuseInvitation(reason?: string, callID?: string, data?: string): Promise<void>;
|
|
37
|
+
acceptInvitation(data?: string): Promise<void>;
|
|
38
|
+
private clearCallInfo;
|
|
39
|
+
destroy(): void;
|
|
40
|
+
private notifyJoinRoomCallback;
|
|
41
|
+
/** 通知UI层调用joinRoom */
|
|
42
|
+
notifyJoinRoom(func: (type: ZegoInvitationType, roomConfig: ZegoCloudRoomConfig, mode: ScenarioModel) => void): void;
|
|
43
|
+
private notifyLeaveRoomCallback;
|
|
44
|
+
/** 通知UI层调用leaveRoom */
|
|
45
|
+
notifyLeaveRoom(func: () => void): void;
|
|
46
|
+
private onUpdateRoomIDCallback;
|
|
47
|
+
/**收到邀请后需要更新roomID*/
|
|
48
|
+
onUpdateRoomID(func: (roomID: string) => void): void;
|
|
49
|
+
/**结束 call,清除 callInfo */
|
|
50
|
+
endCall(reason: CallInvitationEndReason): void;
|
|
51
|
+
setCallInvitationConfig(config: ZegoCallInvitationConfig): void;
|
|
52
|
+
private clearOutgoingTimer;
|
|
53
|
+
private clearIncomingTimer;
|
|
54
|
+
}
|
package/package.json
CHANGED
package/view/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { ZegoCloudRTCCore } from "../modules";
|
|
3
3
|
export declare class ZegoCloudRTCKitComponent extends React.Component<{
|
|
4
4
|
core: ZegoCloudRTCCore;
|
|
5
|
+
unmount: () => void;
|
|
5
6
|
}> {
|
|
6
7
|
state: {
|
|
7
8
|
step: number;
|
|
@@ -9,5 +10,6 @@ export declare class ZegoCloudRTCKitComponent extends React.Component<{
|
|
|
9
10
|
};
|
|
10
11
|
componentDidMount(): Promise<void>;
|
|
11
12
|
nextPage(): void;
|
|
13
|
+
destroyNodeWhenNoView(): void;
|
|
12
14
|
render(): React.ReactNode;
|
|
13
15
|
}
|
|
@@ -29,8 +29,8 @@ export declare class ZegoBrowserCheck extends React.Component<ZegoBrowserCheckPr
|
|
|
29
29
|
};
|
|
30
30
|
videoRef: RefObject<HTMLVideoElement>;
|
|
31
31
|
inviteRef: RefObject<HTMLInputElement>;
|
|
32
|
-
audioRefuse: boolean;
|
|
33
|
-
videoRefuse: boolean;
|
|
32
|
+
audioRefuse: boolean | undefined;
|
|
33
|
+
videoRefuse: boolean | undefined;
|
|
34
34
|
constructor(props: ZegoBrowserCheckProp);
|
|
35
35
|
componentDidMount(): Promise<void>;
|
|
36
36
|
componentWillUnmount(): void;
|
|
@@ -20,8 +20,8 @@ export declare class ZegoBrowserCheckMobile extends React.Component<ZegoBrowserC
|
|
|
20
20
|
videoRef: RefObject<HTMLVideoElement>;
|
|
21
21
|
inviteRef: RefObject<HTMLInputElement>;
|
|
22
22
|
nameInputRef: RefObject<HTMLInputElement>;
|
|
23
|
-
audioRefuse: boolean;
|
|
24
|
-
videoRefuse: boolean;
|
|
23
|
+
audioRefuse: boolean | undefined;
|
|
24
|
+
videoRefuse: boolean | undefined;
|
|
25
25
|
isAndroid: boolean;
|
|
26
26
|
isIOS: boolean;
|
|
27
27
|
clientHeight: number;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Root } from "react-dom/client";
|
|
2
|
+
import { ZegoInvitationType, ZegoUser } from "../../../model";
|
|
3
|
+
declare class CallInvitationControl {
|
|
4
|
+
isWaitingPageShow: boolean;
|
|
5
|
+
isDialogShow: boolean;
|
|
6
|
+
container: Element;
|
|
7
|
+
root: Root | undefined;
|
|
8
|
+
isPc: boolean;
|
|
9
|
+
constructor(container: Element);
|
|
10
|
+
callInvitationWaitingPageShow(invitee: ZegoUser, type: ZegoInvitationType, cancel: () => void): void;
|
|
11
|
+
callInvitationWaitingPageHide(): void;
|
|
12
|
+
callInvitationDialogShow(inviter: ZegoUser, refuse: Function, accept: Function): void;
|
|
13
|
+
callInvitationDialogHide(): void;
|
|
14
|
+
}
|
|
15
|
+
export declare const callInvitationControl: CallInvitationControl;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { ZegoUser } from "zego-express-engine-webrtc/sdk/src/common/zego.entity";
|
|
3
|
+
export declare class CallInvitationDialog extends React.Component<{
|
|
4
|
+
inviter: ZegoUser;
|
|
5
|
+
isPc: boolean;
|
|
6
|
+
refuse: Function;
|
|
7
|
+
accept: Function;
|
|
8
|
+
}> {
|
|
9
|
+
audioRef: HTMLAudioElement | null;
|
|
10
|
+
componentWillUnmount(): void;
|
|
11
|
+
render(): React.ReactNode;
|
|
12
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { ZegoUser } from "zego-express-engine-webrtc/sdk/src/common/zego.entity";
|
|
3
|
+
import { ZegoInvitationType } from "../../../model";
|
|
4
|
+
export declare class CallInvitationWaiting extends React.PureComponent<{
|
|
5
|
+
invitee: ZegoUser;
|
|
6
|
+
type: ZegoInvitationType;
|
|
7
|
+
isPc: boolean;
|
|
8
|
+
cancel: () => void;
|
|
9
|
+
outgoingCallUrl?: string;
|
|
10
|
+
}> {
|
|
11
|
+
audioRef: HTMLAudioElement | null;
|
|
12
|
+
componentWillUnmount(): void;
|
|
13
|
+
render(): React.ReactNode;
|
|
14
|
+
}
|
|
@@ -51,6 +51,7 @@ export declare class ZegoRoom extends React.PureComponent<ZegoBrowserCheckProp>
|
|
|
51
51
|
fullScreen: boolean;
|
|
52
52
|
showNotSupported: number;
|
|
53
53
|
notSupportMultipleVideoNotice: number;
|
|
54
|
+
get showHeader(): boolean;
|
|
54
55
|
get isCDNLive(): boolean;
|
|
55
56
|
userUpdateCallBack: () => void;
|
|
56
57
|
componentDidMount(): void;
|
|
@@ -68,6 +68,7 @@ export declare class ZegoRoomMobile extends React.PureComponent<ZegoBrowserCheck
|
|
|
68
68
|
}) => void;
|
|
69
69
|
openMore(): void;
|
|
70
70
|
leaveRoom(): void;
|
|
71
|
+
private confirmLeaveRoom;
|
|
71
72
|
getAllUser(): ZegoCloudUserList;
|
|
72
73
|
getAllMemberList(): ZegoCloudUserList;
|
|
73
74
|
getShownUser(): ZegoCloudUserList;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { ZegoCloudUser } from "../../../modules/tools/UserListManager";
|
|
3
|
-
export
|
|
3
|
+
export type ShowManageType = {
|
|
4
4
|
show?: (user: ZegoCloudUser) => void;
|
|
5
5
|
showPinButton: boolean;
|
|
6
6
|
userInfo: {
|
|
@@ -15,6 +15,7 @@ export declare type ShowManageType = {
|
|
|
15
15
|
whiteboard_isFontBold?: boolean;
|
|
16
16
|
whiteboard_isFontItalic?: boolean;
|
|
17
17
|
whiteboard_showAddImage?: boolean;
|
|
18
|
+
whiteboard_showCreateClose?: boolean;
|
|
18
19
|
};
|
|
19
20
|
declare const ShowManageContext: React.Context<ShowManageType>;
|
|
20
21
|
export default ShowManageContext;
|