Skip to content

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

ParameterTypeDescription
listener(event) => voidCallback 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.

Released under the MIT License.