@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
14 lines (13 loc) • 399 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WebhookHttpMethod = void 0;
/**
* @export
* @enum {string}
*/
var WebhookHttpMethod;
(function (WebhookHttpMethod) {
WebhookHttpMethod["POST"] = "POST";
WebhookHttpMethod["PUT"] = "PUT";
})(WebhookHttpMethod || (exports.WebhookHttpMethod = WebhookHttpMethod = {}));
exports.default = WebhookHttpMethod;