Skip to content

Commit 6b0beb1

Browse files
authored
Fix mute and dtmf documentation
1 parent 24849c4 commit 6b0beb1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -282,23 +282,24 @@ RNCallKeep.addEventListener('didDisplayIncomingCall', ({ error }) => {
282282
A 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

293292
Used 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

0 commit comments

Comments
 (0)