UNPKG

@vonage/voice

Version:

The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.

12 lines (10 loc) 278 B
/** * Represents parameters for unearmuffing a call, allowing the call audio to be heard again. */ type UnearmuffCallParameters = { /** * The action type indicating unearmuffing of a call. */ action: 'unearmuff'; }; export type { UnearmuffCallParameters };