UNPKG

@vonage/voice

Version:

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

16 lines (14 loc) 293 B
/** * Enum representing the direction of a call, whether it is outbound or inbound. */ declare enum CallDirection { /** * Outbound call direction. */ OUTBOUND = "outbound", /** * Inbound call direction. */ INBOUND = "inbound" } export { CallDirection };