@cometchat/calls-sdk-javascript 4.2.5 → 5.0.0-beta.2

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.
Files changed (41) hide show
  1. package/README.md +29 -16
  2. package/dist/index.css +1 -0
  3. package/dist/index.d.ts +2112 -0
  4. package/dist/index.es.js +39425 -0
  5. package/dist/index.umd.js +319 -0
  6. package/package.json +48 -23
  7. package/LICENSE.md +0 -3
  8. package/pack/index.js +0 -2
  9. package/pack/src/Helper.d.ts +0 -5
  10. package/pack/src/api/APIHandler.d.ts +0 -39
  11. package/pack/src/api/endpoints.d.ts +0 -7
  12. package/pack/src/api/helper.d.ts +0 -69
  13. package/pack/src/api/index.d.ts +0 -2
  14. package/pack/src/constants/CallConstants.d.ts +0 -218
  15. package/pack/src/constants/index.d.ts +0 -1
  16. package/pack/src/defaultCallsettings.d.ts +0 -2
  17. package/pack/src/index.d.ts +0 -7
  18. package/pack/src/models/CallGroup.d.ts +0 -14
  19. package/pack/src/models/CallLog.d.ts +0 -276
  20. package/pack/src/models/CallSettings.d.ts +0 -396
  21. package/pack/src/models/CallUser.d.ts +0 -14
  22. package/pack/src/models/CallsAppSettings.d.ts +0 -41
  23. package/pack/src/models/CometChatCallLogs.d.ts +0 -189
  24. package/pack/src/models/CometChatCalls.d.ts +0 -181
  25. package/pack/src/models/CometChatCallsException.d.ts +0 -8
  26. package/pack/src/models/ErrorModel.d.ts +0 -12
  27. package/pack/src/models/Listener.d.ts +0 -91
  28. package/pack/src/models/ListnerHandler.d.ts +0 -10
  29. package/pack/src/models/Participant.d.ts +0 -184
  30. package/pack/src/models/PresenterSettings.d.ts +0 -279
  31. package/pack/src/models/RTCUser.d.ts +0 -18
  32. package/pack/src/models/Recording.d.ts +0 -86
  33. package/pack/src/models/index.d.ts +0 -10
  34. package/pack/src/types/ICallSettings.d.ts +0 -62
  35. package/pack/src/types/ICallsAppSettings.d.ts +0 -6
  36. package/pack/src/types/RTCUser.d.ts +0 -6
  37. package/pack/src/types/callEvents.d.ts +0 -84
  38. package/pack/src/types/common.d.ts +0 -14
  39. package/pack/src/types/index.d.ts +0 -2
  40. package/pack/src/util/parseJwt.d.ts +0 -1
  41. package/pack/src/util/verifyCallSettings.d.ts +0 -4
@@ -1,279 +0,0 @@
1
- import { MainVideoContainerSetting, VirtualBackground } from "./CallSettings";
2
- import { OngoingCallListener } from "./Listener";
3
- export declare class PresenterSettings {
4
- static POSITION_TOP_LEFT: string;
5
- static POSITION_TOP_RIGHT: string;
6
- static POSITION_BOTTOM_LEFT: string;
7
- static POSITION_BOTTOM_RIGHT: string;
8
- static POSITION: {
9
- readonly TOP_LEFT: "top-left";
10
- readonly TOP_RIGHT: "top-right";
11
- readonly BOTTOM_LEFT: "bottom-left";
12
- readonly BOTTOM_RIGHT: "bottom-right";
13
- };
14
- static ASPECT_RATIO_DEFAULT: string;
15
- static ASPECT_RATIO_CONTAIN: string;
16
- static ASPECT_RATIO_COVER: string;
17
- static ASPECT_RATIO: {
18
- readonly DEFAULT: "default";
19
- readonly CONTAIN: "contain";
20
- readonly COVER: "cover";
21
- };
22
- private defaultLayout;
23
- private isAudioOnly;
24
- private isPresenter;
25
- private mode;
26
- private ShowEndCallButton;
27
- private ShowMuteAudioButton;
28
- private ShowPauseVideoButton;
29
- private ShowScreenShareButton;
30
- private ShowSwitchModeButton;
31
- private StartAudioMuted;
32
- private StartVideoMuted;
33
- private localizedObject;
34
- private analyticsSettings;
35
- private customCSS;
36
- private ShowRecordingButton;
37
- private idleTimeoutPeriod;
38
- private StartRecordingOnCallStart;
39
- private callListener;
40
- private ShowSwitchToVideoCallButton;
41
- private VirtualBackground;
42
- private ShowVirtualBackgroundSetting;
43
- private MainVideoContainerSetting;
44
- constructor(builder?: PresenterSettingsBuilder);
45
- getCallListener(): OngoingCallListener;
46
- isRecordingButtonEnabled(): boolean;
47
- getIdleTimeoutPeriod(): number;
48
- shouldStartRecordingOnCallStart(): boolean;
49
- getCustomCSS(): string;
50
- isAudioOnlyCall(): boolean;
51
- getIsPresenter(): boolean;
52
- isDefaultLayoutEnabled(): boolean;
53
- getMode(): "PRESENTER";
54
- getStartWithAudioMuted(): boolean;
55
- getStartWithVideoMuted(): boolean;
56
- isEndCallButtonEnabled(): boolean;
57
- isMuteAudioButtonEnabled(): boolean;
58
- isPauseVideoButtonEnabled(): boolean;
59
- isScreenShareButtonEnabled(): boolean;
60
- isModeButtonEnabled(): boolean;
61
- getLocalizedStringObject(): Object;
62
- getAnalyticsSettings(): Object;
63
- isAudioToVideoButtonEnabled(): boolean;
64
- getVirtualBackground(): VirtualBackground;
65
- isVirtualBackgroundSettingEnabled(): boolean;
66
- getMainVideoContainerSetting(): MainVideoContainerSetting;
67
- }
68
- export declare class PresenterSettingsBuilder {
69
- /** @private */ defaultLayout: boolean;
70
- /** @private */ isAudioOnly: boolean;
71
- /** @private */ isPresenter: boolean;
72
- /** @private */ ShowEndCallButton: boolean;
73
- /** @private */ ShowMuteAudioButton: boolean;
74
- /** @private */ ShowPauseVideoButton: boolean;
75
- /** @private */ ShowScreenShareButton: boolean;
76
- /** @private */ ShowSwitchModeButton: boolean;
77
- /** @private */ StartAudioMuted: boolean;
78
- /** @private */ StartVideoMuted: boolean;
79
- /** @private */ localizedObject: Object;
80
- /** @private */ analyticsSettings: Object;
81
- /** @private */ customCSS: string;
82
- /** @private */ ShowRecordingButton: boolean;
83
- /** @private */ idleTimeoutPeriod: number;
84
- /** @private */ StartRecordingOnCallStart: boolean;
85
- /** @private */ ShowSwitchToVideoCallButton: boolean;
86
- /** @private */ virtualBackground: VirtualBackground;
87
- /** @private */ ShowVirtualBackgroundSetting: boolean;
88
- /** @private */ MainVideoContainerSetting: MainVideoContainerSetting;
89
- /** @private */ callListener: OngoingCallListener;
90
- /**
91
- *
92
- * @param {boolean} defaultLayout
93
- * This methods shows/hides the default button layout.
94
- * If set to true the default button layout will be shown.
95
- * If set to false the default button layout will be hidden.
96
- * Default value is true
97
- * @returns {PresenterSettingsBuilder} Returns the PresenterSettingsBuilder instance
98
- */
99
- enableDefaultLayout(defaultLayout: boolean): this;
100
- /**
101
- *
102
- * @param {boolean} isAudioOnly
103
- * This methods sets the type(audio/video) of the call.
104
- * If set to true, the call will be strictly an audio call.
105
- * If set to false, the call will be an audio-video call.
106
- * Default value is false
107
- * @returns {PresenterSettingsBuilder} Returns the PresenterSettingsBuilder instance
108
- */
109
- setIsAudioOnlyCall(isAudioOnly: boolean): this;
110
- /**
111
- *
112
- * @param {boolean} isPresenter
113
- * This methods sets if the user is a presenter.
114
- * If set to true, user will be a presenter.
115
- * If set to false, user will not be a presenter.
116
- * Default value is false
117
- * @returns {PresenterSettingsBuilder} Returns the PresenterSettingsBuilder instance
118
- */
119
- setIsPresenter(isPresenter: boolean): this;
120
- /**
121
- *
122
- * @param {boolean} showEndCallButton
123
- * This method shows/hides the end call button.
124
- * If set to true it will display the end call button.
125
- * If set to false it will hide the end call button.
126
- * Default value is true.
127
- * @returns {PresenterSettingsBuilder} Returns the PresenterSettingsBuilder instance
128
- */
129
- showEndCallButton(showEndCallButton: boolean): this;
130
- /**
131
- *
132
- * @param {boolean} showMuteAudioButton
133
- * This method shows/hides the mute audio button.
134
- * If set to true it will display the mute audio button.
135
- * If set to false it will hide the mute audio button.
136
- * Default value is true.
137
- * @returns {PresenterSettingsBuilder} Returns the PresenterSettingsBuilder instance
138
- */
139
- showMuteAudioButton(showMuteAudioButton: boolean): this;
140
- /**
141
- *
142
- * @param {boolean} showPauseVideoButton
143
- * This method shows/hides the pause video button.
144
- * If set to true it will display the pause video button.
145
- * If set to false it will hide the pause video button.
146
- * Default value is true.
147
- * @returns {PresenterSettingsBuilder} Returns the PresenterSettingsBuilder instance
148
- */
149
- showPauseVideoButton(showPauseVideoButton: boolean): this;
150
- /**
151
- *
152
- * @param {boolean} showScreenShareButton
153
- * This method shows/hides the screen share button.
154
- * If set to true it will display the screen share button.
155
- * If set to false it will hide the screen share button.
156
- * Default value is true.
157
- * @returns {PresenterSettingsBuilder} Returns the PresenterSettingsBuilder instance
158
- */
159
- showScreenShareButton(showScreenShareButton: boolean): this;
160
- /**
161
- *
162
- * @param {boolean} showModeButton
163
- * This method shows/hides the switch mode button.
164
- * If set to true it will display the switch mode button.
165
- * If set to false it will hide the switch mode button.
166
- * Default value is true.
167
- * @returns
168
- */
169
- showModeButton(showModeButton: boolean): this;
170
- /**
171
- *
172
- * @param {Object} localizedStringObject
173
- * This method will set the localized text in the call screen.
174
- * @returns
175
- */
176
- setLocalizedStringObject(localizedStringObject: Object): this;
177
- /**
178
- * @private
179
- * @param {Object} analyticsSettings
180
- * This method will set the settings required for analytics.
181
- * @returns
182
- */
183
- setAnalyticsSettings(analyticsSettings: Object): this;
184
- /**
185
- *
186
- * @param {boolean} audioMuted
187
- * This method allows the call to be started with audio muted.
188
- * If set to true, the call will start with audio muted.
189
- * Default value is false.
190
- * @returns {PresenterSettingsBuilder} Returns the PresenterSettingsBuilder instance
191
- */
192
- startWithAudioMuted(audioMuted: boolean): this;
193
- /**
194
- *
195
- * @param {boolean} videoMuted
196
- * This method allows the call to be started with video muted.
197
- * If set to true, the call will start with video muted.
198
- * Default value is false.
199
- * @returns {PresenterSettingsBuilder} Returns the PresenterSettingsBuilder instance
200
- */
201
- startWithVideoMuted(videoMuted: boolean): this;
202
- /**
203
- *
204
- * @param {boolean} showRecordingButton
205
- * This method shows/hides the recording button.
206
- * If set to true it will display the recording button.
207
- * If set to false it will hide the recording button.
208
- * Default value is false.
209
- * @returns {PresenterSettingsBuilder} Returns the PresenterSettingsBuilder instance
210
- */
211
- showRecordingButton(showRecordingButton: boolean): this;
212
- /**
213
- *
214
- * @param {number} idleTimeoutPeriod
215
- * This method sets the idle timeout period for the call.
216
- * If set and you are the only one in call, the call will end
217
- * after the idle timeout period, giving you the option to
218
- * extend the call 60 seconds before the call ends.
219
- * Default value is 180 seconds.
220
- * @returns {PresenterSettingsBuilder} Returns the PresenterSettingsBuilder instance
221
- */
222
- setIdleTimeoutPeriod(idleTimeoutPeriod: number): this;
223
- /**
224
- *
225
- * @param {boolean} startRecordingOnCallStart
226
- * This method starts the recording as soon as the call start.
227
- * If set to true it will start the recording as soon as the call start.
228
- * Default value is false.
229
- * @returns {PresenterSettingsBuilder} Returns the PresenterSettingsBuilder instance
230
- */
231
- startRecordingOnCallStart(startRecordingOnCallStart: boolean): this;
232
- /**
233
- *
234
- * @param {boolean} showAudioToVideoSwitchButton
235
- * This method shows/hides the switch to video call button.
236
- * If set to true it will display the switch to video call button.
237
- * If set to false it will hide the switch to video call button.
238
- * Default value is true.
239
- * @returns
240
- */
241
- showSwitchToVideoCallButton(showAudioToVideoSwitchButton: boolean): this;
242
- /**
243
- *
244
- * @param {VirtualBackground} virtualBackground
245
- * This method will set the virtual background setting.
246
- * This methods takes an Object of VirtualBackground Class.
247
- * @returns
248
- */
249
- setVirtualBackground(virtualBackground: VirtualBackground): this;
250
- /**
251
- *
252
- * @param {boolean} showVirtualBackgroundSetting
253
- * This method shows/hides the virtual background setting button.
254
- * If set to true it will display the virtual background setting button.
255
- * If set to false it will hide the virtual background setting button.
256
- * Default value is true.
257
- * @returns
258
- */
259
- showVirtualBackgroundSetting(showVirtualBackgroundSetting: boolean): this;
260
- /**
261
- *
262
- * @param {MainVideoContainerSetting} mainVideoContainerSetting
263
- * This method can be used to customize the main video container.
264
- * @returns
265
- */
266
- setMainVideoContainerSetting(mainVideoContainerSetting: MainVideoContainerSetting): this;
267
- /**
268
- *
269
- * @param {OngoingCallListener} callListener
270
- * This method can be used to subscribe to available callings events
271
- * @returns
272
- */
273
- setCallListener(callListener: OngoingCallListener): this;
274
- /**
275
- * This method will return an object of the PresenterSettings class.
276
- * @returns {PresenterSettings} Returns the PresenterSettings instance
277
- */
278
- build(): PresenterSettings;
279
- }
@@ -1,18 +0,0 @@
1
- export declare class RTCUser {
2
- private uid;
3
- private avatar;
4
- private name;
5
- private jwt;
6
- private resource;
7
- constructor(uid: any);
8
- setUID(uid: string): void;
9
- getUID(): string;
10
- setName(name: string): void;
11
- getName(): string;
12
- setAvatar(avatar: string): void;
13
- getAvatar(): string;
14
- setJWT(jwt: string): void;
15
- getJWT(): string;
16
- setResource(resource: string): void;
17
- getResource(): string;
18
- }
@@ -1,86 +0,0 @@
1
- /**
2
- * Represents a recording object.
3
- */
4
- export declare class Recording {
5
- /**
6
- * The recording ID.
7
- */
8
- private rid;
9
- /**
10
- * The URL of the recording.
11
- */
12
- private recording_url;
13
- /**
14
- * The start time of the recording.
15
- */
16
- private startTime;
17
- /**
18
- * The end time of the recording.
19
- */
20
- private endTime;
21
- /**
22
- * The duration of the recording.
23
- */
24
- private duration;
25
- /**
26
- * Creates a new instance of the Recording class.
27
- * @param data - The data to initialize the recording object.
28
- */
29
- constructor(data: any);
30
- /**
31
- * Gets the recording ID.
32
- * @returns The recording ID.
33
- */
34
- getRid(): string;
35
- /**
36
- * Sets the recording ID.
37
- * @param value - The recording ID to set.
38
- */
39
- setRid(value: string): void;
40
- /**
41
- * Gets the recording URL.
42
- * @returns The recording URL.
43
- */
44
- getRecordingURL(): string;
45
- /**
46
- * Sets the recording URL.
47
- * @param value - The recording URL to set.
48
- */
49
- setRecordingURL(value: string): void;
50
- /**
51
- * Gets the start time of the recording.
52
- * @returns The start time of the recording.
53
- */
54
- getStartTime(): number;
55
- /**
56
- * Sets the start time of the recording.
57
- * @param value - The start time of the recording to set.
58
- */
59
- setStartTime(value: number): void;
60
- /**
61
- * Gets the end time of the recording.
62
- * @returns The end time of the recording.
63
- */
64
- getEndTime(): number;
65
- /**
66
- * Sets the end time of the recording.
67
- * @param value - The end time of the recording to set.
68
- */
69
- setEndTime(value: number): void;
70
- /**
71
- * Gets the duration of the recording.
72
- * @returns The duration of the recording.
73
- */
74
- getDuration(): number;
75
- /**
76
- * Sets the duration of the recording.
77
- * @param value - The duration of the recording to set.
78
- */
79
- setDuration(value: number): void;
80
- /**
81
- * Creates a new Recording object from the given JSON data.
82
- * @param data - The JSON data to create the Recording object from.
83
- * @returns A new Recording object.
84
- */
85
- static getRecordingFromJson(data: any): Recording;
86
- }
@@ -1,10 +0,0 @@
1
- import { ListenerHandlers } from "./ListnerHandler";
2
- export declare const addCallEventListener: typeof ListenerHandlers.addCallEventListener;
3
- export declare const removeCallEventListener: typeof ListenerHandlers.removeCallEventListener;
4
- export * from "./CallSettings";
5
- export * from "./CallsAppSettings";
6
- export * from "./CometChatCalls";
7
- export * from "./ErrorModel";
8
- export * from "./RTCUser";
9
- export * from "./CometChatCallsException";
10
- export * from "./CometChatCallLogs";
@@ -1,62 +0,0 @@
1
- import { CallConstants } from "../constants";
2
- import { TColor, TPosition } from "./common";
3
- export interface ICallsettings {
4
- screenShareMode?: "default" | "presenter";
5
- ShowEndCallButton?: boolean;
6
- ShowRecordingButton?: boolean;
7
- idleTimeoutPeriod?: number;
8
- StartRecordingOnCallStart?: boolean;
9
- ShowMuteAudioButton?: boolean;
10
- ShowPauseVideoButton?: boolean;
11
- ShowScreenShareButton?: boolean;
12
- ShowSwitchToVideoCallButton?: boolean;
13
- defaultLayout?: boolean;
14
- isAudioCall?: boolean;
15
- isAudioOnly?: boolean;
16
- user: {
17
- name: string;
18
- avatar?: string;
19
- uid: string;
20
- jwt?: string;
21
- };
22
- mode?: typeof CallConstants.MODE[keyof typeof CallConstants.MODE];
23
- StartAudioMuted?: boolean;
24
- StartVideoMuted?: boolean;
25
- ShowSwitchModeButton?: boolean;
26
- ShowVirtualBackgroundSetting?: boolean;
27
- VirtualBackground?: {
28
- AllowBackgroundBlur?: boolean;
29
- AllowUserImages?: boolean;
30
- ShowDefaultImages?: boolean;
31
- SetImages?: string[];
32
- EnforceBackgroundBlur?: 0 | 1 | 2;
33
- EnforceBackgroundImage?: string;
34
- };
35
- AvatarMode?: "circle";
36
- MainVideoContainerSetting?: {
37
- videoFit?: "contain" | "cover";
38
- zoomButton?: {
39
- visible?: boolean;
40
- visibility?: boolean;
41
- position?: TPosition;
42
- };
43
- nameLabel?: {
44
- visible?: boolean;
45
- visibility?: boolean;
46
- position?: TPosition;
47
- color?: TColor;
48
- };
49
- network?: {
50
- visible?: boolean;
51
- visibility?: boolean;
52
- position?: TPosition;
53
- };
54
- };
55
- customCSS?: string;
56
- analyticsSettings?: {
57
- ANALYTICS_HOST?: string;
58
- ANALYTICS_VERSION?: string;
59
- ANALYTICS_PING_DISABLED?: boolean;
60
- ANALYTICS_USE_SSL?: boolean;
61
- };
62
- }
@@ -1,6 +0,0 @@
1
- import { Host, Region } from "./common";
2
- export interface ICallsAppSettings {
3
- appId: string;
4
- region: Region;
5
- host?: Host;
6
- }
@@ -1,6 +0,0 @@
1
- export interface IRTCUser {
2
- name: string;
3
- avatar: string;
4
- joinnedAt: string;
5
- uid: string;
6
- }
@@ -1,84 +0,0 @@
1
- import { AnyProperties } from "./common";
2
- export type CallingEventsInternal = "initialDeviceList" | "onDeviceChange" | "onUserJoined" | "onUserLeft" | "onUserListChanged" | "SCREEN_SHARE_STARTED" | "SCREEN_SHARE_ENDED" | "SCREEN_SHARE_ENDED" | "hangup" | "onSessionTimeout" | "onCallSwitchedToVideo" | "onRecordingToggled" | "onCallEndButtonPressed" | "onUserMuted" | "onUserUnMuted";
3
- interface IAVDevice {
4
- deviceId: string;
5
- kind: string;
6
- label: string;
7
- groupId: string;
8
- }
9
- interface IUserWithExtraData {
10
- name: string;
11
- avatar: string;
12
- status: string;
13
- isVideoMuted: string;
14
- isAudioMuted: string;
15
- showVideo: string;
16
- isLocalUser: string;
17
- audioTrack: string;
18
- id: string;
19
- uid: string;
20
- joinedAt: string;
21
- videoTrack: string;
22
- stats: string;
23
- }
24
- interface User extends AnyProperties {
25
- name: string;
26
- avatar: string;
27
- uid: string;
28
- }
29
- export interface ICallEventsData {
30
- onUserJoined: User;
31
- onUserLeft: User;
32
- onUserUnMuted: User;
33
- onUserMuted: {
34
- muted: {
35
- name: string;
36
- avatar?: string;
37
- isVideoMuted: boolean;
38
- isAudioMuted: boolean;
39
- uid: string;
40
- joinedAt: string;
41
- };
42
- mutedBy: {
43
- name: string;
44
- avatar?: string;
45
- isAudioMuted: boolean;
46
- isVideoMuted: boolean;
47
- uid: string;
48
- joinedAt: string;
49
- };
50
- };
51
- onUserListUpdated: Array<User>;
52
- onScreenShareStarted: {};
53
- onScreenShareStopped: {};
54
- onRecordingStarted: {
55
- user: Pick<IUserWithExtraData, "name" | "uid">;
56
- };
57
- onMediaDeviceListUpdated: {
58
- videoInputDevices: IAVDevice[];
59
- audioInputDevices: IAVDevice[];
60
- audioOutputDevices: IAVDevice[];
61
- };
62
- onCallEnded: {};
63
- onSessionTimeout: {};
64
- onCallSwitchedToVideo: {
65
- sessionId: string;
66
- initiator: {
67
- name: string;
68
- avatar?: string;
69
- isVideoMuted: boolean;
70
- isAudioMuted: boolean;
71
- uid: string;
72
- joinedAt: string;
73
- };
74
- responder: {
75
- name: string;
76
- avatar?: string;
77
- isVideoMuted: boolean;
78
- isAudioMuted: boolean;
79
- uid: string;
80
- joinedAt: string;
81
- };
82
- };
83
- }
84
- export {};
@@ -1,14 +0,0 @@
1
- export type TPosition = "top-left" | "top-right" | "bottom-left" | "bottom-right";
2
- export type TRGB = `rgb(${number}, ${number}, ${number})`;
3
- export type TRGBA = `rgba(${number}, ${number}, ${number}, ${number})`;
4
- export type THEX = `#${string}`;
5
- type _TColor = TRGB | TRGBA | THEX;
6
- export type TColor = _TColor | Omit<string, _TColor>;
7
- type _TRegion = "eu" | "us" | "in";
8
- export type Region = _TRegion | Omit<string, _TRegion>;
9
- type _TDomain = `${string}.call-${_TRegion}.cometchat.io/v3.0/`;
10
- export type Host = _TDomain | Omit<string, _TDomain>;
11
- export interface AnyProperties {
12
- [prop: string]: any;
13
- }
14
- export {};
@@ -1,2 +0,0 @@
1
- export * from "./ICallsAppSettings";
2
- export * from "./ICallSettings";
@@ -1 +0,0 @@
1
- export declare function parseJwt(token: string): any;
@@ -1,4 +0,0 @@
1
- import { CallSettings } from "../models";
2
- import { PresenterSettings } from "../models/PresenterSettings";
3
- export declare const verifyCallSettings: (callSettings: CallSettings) => void;
4
- export declare const verifyPresenterSettings: (presenterSettings: PresenterSettings) => void;