@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
18 lines (17 loc) • 723 B
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
exports.ComparisonType = void 0;
var ComparisonType;
(function (ComparisonType) {
ComparisonType["equals"] = "=";
ComparisonType["lessThan"] = "<";
ComparisonType["lessThanOrEqualTo"] = "<=";
ComparisonType["greaterThan"] = ">";
ComparisonType["greaterThanOrEqualTo"] = ">=";
ComparisonType["isDefined"] = "defined";
ComparisonType["isLiterallyDefined"] = "literallyDefined";
ComparisonType["isNonEmpty"] = "nonempty";
ComparisonType["matchesPattern"] = "pattern";
})(ComparisonType || (exports.ComparisonType = ComparisonType = {}));