Function: addReportedCallEndedListener()
ts
function addReportedCallEndedListener(listener): EventSubscription;Defined in: Calls.ts:668
Subscribes to reported call ended events.
Fired after reportCallEnded is called, confirming the system has been notified of the externally-ended call.
Parameters
| Parameter | Type | Description |
|---|---|---|
listener | (event) => void | Callback invoked when a call end is reported. |
Returns
EventSubscription
A subscription that can be removed by calling .remove().
See
reportCallEnded — the report that triggers this event.