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) 228 B
/** * Represents parameters for hanging up a call. */ type HangupCallParameters = { /** * The action indicating that the call should be hung up. */ action: 'hangup'; }; export type { HangupCallParameters };