File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -282,23 +282,24 @@ RNCallKeep.addEventListener('didDisplayIncomingCall', ({ error }) => {
282282A call was muted by the system or the user:
283283
284284``` js
285- RNCallKeep .addEventListener (' didPerformSetMutedCallAction' , ({ muted } ) => {
285+ RNCallKeep .addEventListener (' didPerformSetMutedCallAction' , (muted ) => {
286286
287287});
288288
289289```
290290### - didPerformDTMFAction
291- _ This feature is available only on Android for now._
292291
293292Used type a number on his dialer
294293
295294``` js
296- RNCallKeep .addEventListener (' didPerformDTMFAction' , ({ dtmf }) => {
295+ RNCallKeep .addEventListener (' didPerformDTMFAction' , ({ dtmf, callUUID }) => {
297296
298297});
299298```
300299
301- - ` muted ` (boolean)
300+ - ` dtmf ` (string)
301+ - ` callUUID ` (string)
302+ - iOS only.
302303
303304## Example
304305
You can’t perform that action at this time.
0 commit comments