UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

19 lines (18 loc) 652 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ConditionOperator = void 0; /** * The operator that should be used for the evaluation * @export * @enum {string} */ var ConditionOperator; (function (ConditionOperator) { ConditionOperator["EQUAL"] = "=="; ConditionOperator["NOT_EQUAL"] = "!="; ConditionOperator["LESS_THAN_OR_EQUAL"] = "<="; ConditionOperator["LESS_THAN"] = "<"; ConditionOperator["GREATER_THAN"] = ">"; ConditionOperator["GREATER_THAN_OR_EQUAL"] = ">="; })(ConditionOperator || (exports.ConditionOperator = ConditionOperator = {})); exports.default = ConditionOperator;