/** * 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 };