@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
18 lines • 534 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CallDirection = void 0;
/**
* Enum representing the direction of a call, whether it is outbound or inbound.
*/
var CallDirection;
(function (CallDirection) {
/**
* Outbound call direction.
*/
CallDirection["OUTBOUND"] = "outbound";
/**
* Inbound call direction.
*/
CallDirection["INBOUND"] = "inbound";
})(CallDirection || (exports.CallDirection = CallDirection = {}));
//# sourceMappingURL=CallDirection.js.map