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) 271 B
/** * Represents parameters for unmuting a call, allowing audio to be transmitted and received again. */ type UnmuteCallParameters = { /** * The action type indicating unmuting of a call. */ action: 'unmute'; }; export type { UnmuteCallParameters };