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) 216 B
/** * Represents parameters for muting a call. */ type MuteCallParameters = { /** * The action indicating that the call should be muted. */ action: 'mute'; }; export type { MuteCallParameters };