-
Notifications
You must be signed in to change notification settings - Fork 100
/
embedded.d.ts
1904 lines (1879 loc) · 47.4 KB
/
embedded.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Define error types of operations.
* - INVALID_OPERATION: The operation is invalid, perhaps caused by duplicated operations.
* - INTERNAL_ERROR: The remote service is temporarily unavailable.
* - INSUFFICIENT_PRIVILEGES: The operation is only applicable for a host or co-host.
* - OPERATION_TIMEOUT: The operation timed out, try again later.
* - IMPROPER_MEETING_STATE: The user is not in the meeting, see the relevant reason for details.
* - `closed`: The meeting is not joined.
* - `on hold`: The user is on hold (in a waiting room).
* - `reconnecting`: The meeting is reconnecting.
* - INVALID_PARAMETERS: The parameters passed to the method are invalid. This may be due to an incorrect user ID or value. See the relevant reason for details.
* - OPERATION_LOCKED: The operation can not be completed because the relevant property is locked, see the relevant reason for details.
*/
export type ErrorTypes =
| 'INVALID_OPERATION'
| 'INTERNAL_ERROR'
| 'OPERATION_TIMEOUT'
| 'INSUFFICIENT_PRIVILEGES'
| 'IMPROPER_MEETING_STATE'
| 'INVALID_PARAMETERS'
| 'OPERATION_LOCKED';
export interface ExecutedFailure {
type: ErrorTypes;
reason: string;
}
/**
* Interface for the result of check system requirements.
* > if `audio` is `false`, it means the system cannot support VoIP, but you can join the audio by phone.
*/
export interface MediaCompatiblity {
/**
*/
audio: boolean;
/**
*/
video: boolean;
/**
*/
screen: boolean;
}
/**
* The result of asynchronous operation. It is a promise object.
* - '': Success
* - ExecutedFailure: Failure. Use `.catch(error=>{})` or `try{ *your code* }catch(error){}` to handle the errors.
*/
export type ExecutedResult = Promise<string | ExecutedFailure>;
/**
* Enumeration of camera control cmd
* @enum
*/
export enum CameraControlCmd {
/**
* Zoom in
*/
ZoomIn = 2,
/**
* Zoom out
*/
ZoomOut = 3,
/**
* Turn left
*/
Left = 4,
/**
* Turn right
*/
Right = 5,
/**
* Turn up
*/
Up = 6,
/**
* Turn down
*/
Down = 7,
/**
* Switch camera
*/
SwitchCamera = 8
}
/**
* Capability of camera
*/
export interface PTZCameraCapability {
/**
* Pan
*/
pan: boolean;
/**
* Tilt
*/
tilt: boolean;
/**
* Zoom
*/
zoom: boolean;
}
/**
* Reasons for refusal to control far-end camera
*/
export enum FarEndCameraControlDeclinedReason {
/**
* Normal
*/
None = 0,
/**
* Approved another user
*/
ApproveAnother = 3,
/**
* User withdrew control
*/
Stop = 5
}
/**
* Local camera control command
*/
type LocalCameraControlCmd = Exclude<CameraControlCmd, CameraControlCmd.SwitchCamera>;
/**
* Interface of local camera control option
*/
export interface CameraControlOption {
/**
* Control command
*/
cmd: LocalCameraControlCmd;
/**
* The range of this operation. Total range is 100.
*/
range: number;
/**
* Is reset
*/
reset?: boolean;
}
/**
* Far end camera control command
*/
export interface FarEndCameraControlOption {
/**
* Control command
*/
cmd: CameraControlCmd;
/**
* Controlled user ID
*/
userId: number;
/**
* The range of this operation
*/
range?: number;
}
/**
* Chat message interface.
*/
export interface ChatMessage {
/**
* Message ID. Used to delete or modify a message.
*/
id?: string;
/**
* Message content.
*/
message: string;
/**
* Message sender. Includes name, userId, and avatar.
*/
sender: { name: string; userId: number; avatar?: string };
/**
* Message receiver. Includes name and userId.
*/
receiver: {
name: string;
userId: number;
};
/**
* Timestamp of message.
*/
timestamp: number;
}
/**
* Interface for recording information.
*/
export interface RecordingInfo {
/**
* User's custom disclaimer information, if set.
*/
recordingDisclaimer: Record<string, any>;
/**
* User's custom disclaimer information to show when initiating the recording, if set.
*/
recordingDisclaimerForRecorder: Record<string, any>;
/**
* Attribute if the user enabled a recording reminder.
*/
isUserEnableRecordingReminder: boolean;
}
/**
* Cloud recording status.
*/
export const enum RecordingStatus {
Recording = 'Recording',
Paused = 'Paused',
Stopped = 'Stopped'
}
export type RecordingStatusValue = 'Recording' | 'Paused' | 'Stopped';
/**
* Media capture status.
*/
export const enum MediaCaptureStatus {
Stop = 0,
Start = 1,
Pause = 2
}
export type MediaCaptureStatusValue = 0 | 1 | 2;
/**
* Media capture permission.
*/
export const enum MediaCapturePermission {
/**
* Host denies the media capture request.
*/
Deny = 1,
/**
* Host allows the media capture request.
*/
Allow = 2
}
export type MediaCapturePermissionValue = 0 | 1 | 2;
/**
* Media capture operation values.
*/
export type MediaCaptureOperationValue = 'grant' | 'request' | 'revoke';
/**
* Participant interface.
*/
export interface Participant {
/**
* User's unique ID.
*/
userId: number;
/**
* User's display name.
*/
userName: string;
/**
* @deprecated in v4.0.0, use `userName`
*/
displayName: string;
/**
* User's audio state.
* - `''`: No audio.
* - `computer`: Joined by computer audio.
* - `phone`: Joined by phone.
*/
audio: string;
/**
* Whether audio is muted.
*/
muted: boolean;
/**
* Whether the user is the host.
*/
isHost: boolean;
/**
* Whether the user is a co-host.
*/
isCoHost: boolean;
/**
* Whether the user is a guest (not attached to the account).
*/
isGuest: boolean;
/**
* User's avatar.
* Users can set their avatar in their [web profile](https://zoom.us/profile).
*/
avatar: string;
/**
* Whether the user is a phone call user.
*/
isPhoneUser: boolean;
/**
* Whether the user has raised their hand.
*/
bRaiseHand: boolean;
/**
* Whether the user is on hold.
*/
isHold: boolean;
/**
* @deprecated in v4.0.0, use `isHold`
*/
bHold: boolean;
/**
* Whether the user started video.
*/
video: boolean;
/**
* @deprecated in v4.0.0, use `video`
*/
bVideoOn: boolean;
/**
* Whether the user has started sharing.
*/
sharerOn: boolean;
/**
* Whether the user is allowed to talk.
* Available in webinars.
*/
isAllowToTalk?: boolean;
/**
* Nonverbal feedback of a user.
*/
feedback: number;
/**
* Whether the share is paused.
*/
sharePause: boolean;
isAssistant?: boolean;
/**
* * @deprecated in v4.0.0, use `isAssistant`
*/
astAdmin?: boolean;
isAdmin?: boolean;
/**
* @deprecated in v4.0.0, use `isAdmin`
*/
rmcAdmin?: boolean;
/**
* Whether the participant started local recording (such as on computer).
*/
bLocalRecord?: boolean;
/**
* Optional. An identifier for the user that you can get back from the Meeting API.
*/
customerKey?: string;
/**
* User pronoun
*/
pronoun?: string;
/**
* @deprecated in v4.0.0, use `pronoun`
*/
strPronoun?: string;
/**
* Participants's audio status.
* - 0: NotConnect,
* - 1: Connecting,
* - 2: ConnectSuccess,
* - 3: ConnectFail,
*/
audioStatus?: number;
/**
* @deprecated in v4.0.0, use `audioStatus`
*/
audioConnectionStatus?: number;
/**
* Whether video is connected.
*/
isVideoConnect?: boolean;
/**
* @deprecated in v4.0.0, use `isVideoConnect`
*/
bVideoConnect?: boolean;
/**
* participantUUID
*/
participantUUID?: string;
/**
* @deprecated in v4.0.0, use `participantUUID`
*/
userGuid?: string;
}
/**
* The meeting information interface.
*/
export interface MeetingInfo {
/**
* The meeting number.
*/
meetingNumber: number;
/**
* The meeting password, if it exists.
*/
password: string;
/**
* The meeting telephone password, if it exists.
*/
telPwd: string;
/**
* The user's name.
*/
userName: string;
/**
* The user's ID.
*/
userId: number;
/**
* The user's email address.
*/
userEmail: string;
/**
* The meeting invite email key.
*/
inviteEmail: string;
/**
* The user's customer key.
*/
customerKey: string;
/**
* The topic of the meeting.
*/
meetingTopic: string;
/**
* The encryption type of the meeting.
*/
encryptionType: 'None' | 'AES ECB' | 'AES GCM';
/**
* The server region.
*/
region: string;
/**
* The server network.
*/
network: string;
/**
* Whether the user is in the meeting.
*/
isInMeeting: boolean;
/**
* The language for the SDK.
*/
lang: string;
/**
* The Zoom meeting UUID.
*/
meetingId: string;
/**
* The web endpoint.
*/
webEndpoint: string;
/**
* The participant ID.
*/
participantId: number;
/**
* Recording information.
*/
recordingInfo: RecordingInfo;
}
/**
* Interface to define a custom button for the toolbar "More" dropdown menu.
*/
export declare interface CustomButton {
/**
* The button's label.
*/
text: string;
/**
* Callback when the button is clicked.
*/
onClick: Function;
/**
* The button's class name.
*/
className?: string;
}
/** Interface defining custom component sizes. */
export interface CustomSize {
width: number;
height: number;
}
/** Interface defining the virtual background image. */
export interface VbImageInfoType {
id: string;
fileName: string;
displayName: string;
url: string;
}
/**
* The live transcription message's source.
*/
export enum LiveTranscriptionMessageSource {
/**
* Unspecified.
*/
Unspecified = 0,
/**
* User-typed caption in the meeting.
*/
InMeetingManual = 1,
/**
* Using the external captioner.
*/
ExternalCaptioner = 2,
/**
* Automatic speech recognition.
*/
ASR = 4
}
/**
* The live transcription's language code.
*/
export enum LiveTranscriptionLanguageCode {
/**
* English
*/
English = 0,
/**
* Chinese
*/
'Chinese (Simplified)' = 1,
/**
* Japanese
*/
Japanese = 2,
/**
* German
*/
German = 3,
/**
* French
*/
French = 4,
/**
* Russian
*/
Russian = 5,
/**
* Portuguese
*/
Portuguese = 6,
/**
* Spanish
*/
Spanish = 7,
/**
* Korean
*/
Korean = 8,
/**
* Italian
*/
Italian = 9,
/**
* Reserved
*/
Reserved = 10,
/**
* Vietnamese
*/
Vietnamese = 11,
/**
* Dutch
*/
Dutch = 12,
/**
* Ukrainian
*/
Ukrainian = 13,
/**
* Arabic
*/
Arabic = 14,
/**
* Bengali
*/
Bengali = 15,
/**
* Chinese (Traditional)'
*/
'Chinese (Traditional)' = 16,
/**
* Czech
*/
Czech = 17,
/**
* Estonian
*/
Estonian = 18,
/**
* Finnish
*/
Finnish = 19,
/**
* Greek
*/
Greek = 20,
/**
* Hebrew
*/
Hebrew = 21,
/**
* Hindi
*/
Hindi = 22,
/**
* Hungarian
*/
Hungarian = 23,
/**
* Indonesian
*/
Indonesian = 24,
/**
* Malay
*/
Malay = 25,
/**
* Persian
*/
Persian = 26,
/**
* Polish
*/
Polish = 27,
/**
* Romanian
*/
Romanian = 28,
/**
* Swedish
*/
Swedish = 29,
/**
* Tamil
*/
Tamil = 30,
/**
* Telugu
*/
Telugu = 31,
/**
* Tagalog
*/
Tagalog = 32,
/**
* Turkish
*/
Turkish = 33,
/**
* No translation.
*/
NoTranslation = 400,
/**
* Manual caption.
*/
DefaultManualInput = 401
}
/**
* The participant properties interface.
*/
export interface ParticipantPropertiesPayload {
/**
* The user's ID.
*/
userId: number;
/**
* Avatar of the user.
*/
avatar?: string;
/**
* Whether the user can edit closed captions.
*/
bCCEditor?: boolean;
/**
* Whether the user is a guest (does not belong to the same account).
*/
isGuest?: boolean;
/**
* Whether the user is on hold.
*/
bHold?: boolean;
/**
* Whether the user's hand is raised.
*/
bRaiseHand?: boolean;
/**
* The breakout room's ID.
*/
bid?: number;
/**
* Display name.
*/
displayName?: string;
/**
* The current client's type.
*/
os?: number;
/**
* The user's role.
*/
userRole?: number;
/**
* Whether the user is the host.
*/
isHost?: boolean;
/**
* Whether the user is a co-host.
*/
bCoHost: boolean;
/**
* The type of user:
* - `9`: Client
* - `5`: Phone
* - `15`: H323 device
*/
userType?: number;
/**
* The internal ID.
*/
zoomID?: string;
/**
* The user's audio.
*/
audio?: string;
/**
* @ignore
*/
caps?: number;
/**
* Whether the audio is muted.
*/
muted?: boolean;
/**
* Whether the user is starting the video.
*/
bVideoOn?: boolean;
/**
* Nonverbal feedback.
*/
feedback?: number;
/**
* Whether the user is starting sharing.
*/
sharerOn?: boolean;
/**
* Whether sharing is paused.
*/
sharerPause?: boolean;
/**
* Whether the user is starting local recording.
*/
bLocalRecord?: boolean;
/**
* Whether a new user joins the meeting due to failover or an on hold change.
*/
source?: 'on hold' | 'failover';
/**
* Whether the participants leave the meeting due to failover or an on hold change.
*/
reason?: 'on hold' | 'failover';
/**
* Participants's audio status.
* - 0: NotConnect,
* - 1: Connecting,
* - 2: ConnectSuccess,
* - 3: ConnectFail,
*/
audioConnectionStatus?: number;
}
/**
* The view types
*/
export const enum SuspensionViewType {
Minimized = 'minimized',
Speaker = 'speaker',
Ribbon = 'ribbon',
Gallery = 'gallery',
Active = 'active'
}
export type SuspensionViewValue = 'minimized' | 'speaker' | 'ribbon' | 'gallery' | 'active';
/**
* Arguments and options for joining a meeting.
*/
export interface JoinOptions {
/**
* @param sdkKey The Meeting SDK SDK key or client ID.
*/
sdkKey?: string;
/**
* @param signature The generated signature to create or join the meeting.
* See [Generate the SDK JWT](https://developers.zoom.us/docs/meeting-sdk/auth/) for details.
*/
signature: string;
/**
* @param meetingNumber The Zoom Meeting number.
*/
meetingNumber: string;
/**
* @param password The meeting password.
*/
password?: string;
/**
* @param userName The user's name.
*/
userName: string;
/**
* @param userEmail The user's email address.
*/
userEmail?: string;
/**
* @param customerKey The user's customer key.
*/
customerKey?: string;
/**
* @param tk Optional 'tk' param to join a webinar with registration.
*/
tk?: string;
/**
* @param zak Optional 'zak' param to start a meeting or webinar with OAuth.
*/
zak?: string;
/**
* @param recordingToken Optional token to allow local recording. See [Get a meeting's join token for local recording](https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/meetingLocalRecordingJoinToken) for details.
*/
recordingToken?: string;
/**
* @param success Join success callback.
*/
success?: Function;
/**
* @param error Join error callback.
*/
error?: Function;
}
/**
* Interface of active speaker in meeting.
*/
export interface ActiveSpeaker {
/**
* User ID.
*/
userId: number;
/**
* User's display name.
*/
displayName?: string;
}
export type MeetingInfoType = 'topic' | 'host' | 'mn' | 'pwd' | 'telPwd' | 'invite' | 'participant' | 'dc' | 'enctype';
export type PopperPlacementType =
| 'bottom-end'
| 'bottom-start'
| 'bottom'
| 'left-end'
| 'left-start'
| 'left'
| 'right-end'
| 'right-start'
| 'right'
| 'top-end'
| 'top-start'
| 'top';
export interface PositionStyle {
top?: string | number;
left?: string | number;
right?: string | number;
bottom?: string | number;
}
export interface PopperStyle {
disableDraggable?: boolean;
anchorReference?: 'anchorEl' | 'anchorPosition';
anchorElement?: HTMLElement | null;
anchorPosition?: PositionStyle;
modifiers?: object;
placement?: PopperPlacementType;
}
export type VideoPopperStyle = Omit<PopperStyle, 'anchorElement' | 'modifiers' | 'placement' | 'anchorReference'>;
export type LanguageOptionType =
| 'en-US'
| 'de-DE'
| 'es-ES'
| 'fr-FR'
| 'jp-JP'
| 'pt-PT'
| 'ru-RU'
| 'zh-CN'
| 'zh-TW'
| 'ko-KO'
| 'vi-VN'
| 'it-IT'
| 'pl-PL'
| 'tr-TR'
| 'id-ID'
| 'nl-NL'
| 'sv-SE';
/**
* Options to customize video.
* @param popper Options for the underlying popper element.
* @param isResizable Whether the video container is resizable. Default is true.
* @param viewSizes Sizing options for (a) ribbon view, and (b) all other views.
* @param defaultViewType default view type for the meeting. Note that this is an init-only option, and does nothing post-init
*/
export interface VideoOptions {
popper?: VideoPopperStyle;
isResizable?: boolean;
viewSizes?: {
ribbon?: CustomSize;
default?: CustomSize;
};
defaultViewType?: SuspensionViewType;
}
export interface InitOptions {
debug?: boolean;
/**
* Renders the toolbar and main-panel-view using ReactDOM into the given container.
* @param zoomAppRoot The HTML element, typically a <div>, to render the toolbar in.
*/
zoomAppRoot: HTMLElement | undefined;
/**
* @param assetPath Default 'https://source.zoom.us/{version}/lib/av'.
*/
assetPath?: string;
/**
* @param webEndpoint Default 'zoom.us'.
*/
webEndpoint?: string;
/**
* @param language Default 'en-US'.
* @property de-DE - German Deutsch
* @property es-ES - Spanish Español
* @property fr-FR - French Français
* @property id-ID - Indonesian Bahasa Indonesia
* @property it-IT - Italian Italia
* @property jp-JP - Japanese 日本語
* @property ko-KO - Korean 한국
* @property nl-NL - Dutch Nederlands
* @property pl-PL - Polish Polska
* @property pt-PT - Portuguese Português
* @property ru-RU - Russian Русский
* @property sv-SE - Swedish Svenska
* @property tr-TR - Turkish Türkçe
* @property zh-CN - Chinese 简体中文
* @property zh-TW - Chinese 繁体中文
* @property vi-VN - Vietnamese Tiếng Việt
* @property en-US - English Default
*/
language?:
| 'en-US'
| 'de-DE'
| 'es-ES'
| 'fr-FR'
| 'jp-JP'
| 'pt-PT'
| 'ru-RU'
| 'zh-CN'
| 'zh-TW'
| 'ko-KO'
| 'vi-VN'
| 'it-IT'
| 'pl-PL'
| 'tr-TR'
| 'id-ID'
| 'nl-NL'
| 'sv-SE';
/**
* @param customize Optional customization options for the embedded client.
*/
customize?: {
/**
* Customization options for the toolbar.
* @param buttons Custom buttons to add to the toolbar dropdown menu.
*/
toolbar?: {
buttons?: Array<CustomButton>;
};
/** Customization options for meeting info attributes. */
meetingInfo?: Array<MeetingInfoType>;
/**
* Customize the meeting invite URL format (e.g. https://yourdomain/{0}?pwd={1}).
* This will not work by default, you need to set `Enable Client SDK Customize Invite Url`.
*/
inviteUrlFormat?: string;
/**
* Customization options for the participants panel.
* @param popper Options for the underlying popper element.
*/
participants?: {
popper?: PopperStyle;
};
/**
* Customization options for the settings panel.
* @param popper Options for the underlying popper element.
*/
setting?: {
popper?: PopperStyle;
};
/**
* Customization options for chat notifications and panel.
* @param notificationCls Options for chat notifications.
* @param popper Options for the underlying popper element.
*/
chat?: {