Skip to content

Function: addIncomingCallReportedListener()

ts
function addIncomingCallReportedListener(listener): EventSubscription;

Defined in: Calls.ts:462

Subscribes to incoming call reported events.

Fired after an incoming call has been successfully reported to the system and the call session has been added to the store. Use this to set up early subscriptions (e.g., call signaling) before the call is answered.

Parameters

ParameterTypeDescription
listener(event) => voidCallback invoked when an incoming call is reported.

Returns

EventSubscription

A subscription that can be removed by calling .remove().

See

Released under the MIT License.