forked from react-native-webrtc/react-native-callkeep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
191 lines (134 loc) · 3.44 KB
/
index.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
export type Events =
'didReceiveStartCallAction' |
'answerCall' |
'endCall' |
'didActivateAudioSession' |
'didDeactivateAudioSession' |
'didDisplayIncomingCall' |
'didToggleHoldCallAction' |
'didPerformDTMFAction' |
'didResetProvider' |
'checkReachability' |
'didPerformSetMutedCallAction' |
'didLoadWithEvents';
type HandleType = 'generic' | 'number' | 'email';
interface IOptions {
ios: {
appName: string,
imageName?: string,
supportsVideo?: boolean,
maximumCallGroups?: string,
maximumCallsPerCallGroup?: string,
ringtoneSound?: string,
},
android: {
alertTitle: string,
alertDescription: string,
cancelButton: string,
okButton: string,
imageName?: string,
additionalPermissions: string[],
},
}
export type DidReceiveStartCallActionPayload = { handle: string };
export type AnswerCallPayload = { callUUID: string };
export type EndCallPayload = AnswerCallPayload;
export type DidDisplayIncomingCallPayload = string | undefined;
export type DidPerformSetMutedCallActionPayload = boolean;
export default class RNCallKeep {
static addEventListener(type: Events, handler: (args: any) => void) {
}
static removeEventListener(type: Events) {
}
static async setup(options: IOptions): Promise<void> {
}
static hasDefaultPhoneAccount(): boolean {
}
static answerIncomingCall(uuid: string) {
}
static registerPhoneAccount(): void {
}
static registerAndroidEvents(): void {
}
static displayIncomingCall(
uuid: string,
handle: string,
localizedCallerName?: string,
handleType?: HandleType,
hasVideo?: boolean,
) {
}
static startCall(
uuid: string,
handle: string,
contactIdentifier?: string,
handleType?: HandleType,
hasVideo?: boolean,
) {
}
static updateDisplay(
uuid: string,
displayName: string,
handle: string,
) {
}
/**
* @description reportConnectedOutgoingCallWithUUID method is available only on iOS.
*/
static reportConnectedOutgoingCallWithUUID(uuid: string) {
}
/**
* @description reportConnectedOutgoingCallWithUUID method is available only on iOS.
*/
static reportConnectingOutgoingCallWithUUID(uuid: string): void {
}
static reportEndCallWithUUID(uuid: string, reason: number): void {
}
static rejectCall(uuid: string) {
}
static endCall(uuid: string) {
}
static endAllCalls() {
}
static setReachable() {
}
static isCallActive(uuid: string): Promise<boolean> {
}
/**
* @description supportConnectionService method is available only on Android.
*/
static supportConnectionService(): boolean {
}
/**
* @description hasPhoneAccount method is available only on Android.
*/
static async hasPhoneAccount(): Promise<boolean> {
}
static async hasOutgoingCall(): Promise<boolean> {
}
/**
* @description setMutedCall method is available only on iOS.
*/
static setMutedCall(uuid: string, muted: boolean) {
}
static setOnHold(uuid: string, held: boolean) {
}
/**
* @descriptions sendDTMF is used to send DTMF tones to the PBX.
*/
static sendDTMF(uuid: string, key: string) {
}
static checkIfBusy(): Promise<boolean> {
}
static checkSpeaker(): Promise<boolean> {
}
/**
* @description setAvailable method is available only on Android.
*/
static setAvailable(active: boolean) {
}
static setCurrentCallActive(callUUID: string) {
}
static backToForeground() {
}
}