@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
19 lines (18 loc) • 1.04 kB
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
exports.InfoItemType = exports.NumberInfoItemTypes = void 0;
exports.NumberInfoItemTypes = 9;
var InfoItemType;
(function (InfoItemType) {
InfoItemType[InfoItemType["testCompleteFail"] = 0] = "testCompleteFail";
InfoItemType[InfoItemType["testCompleteSuccess"] = 1] = "testCompleteSuccess";
InfoItemType[InfoItemType["info"] = 2] = "info";
InfoItemType[InfoItemType["error"] = 3] = "error";
InfoItemType[InfoItemType["warning"] = 4] = "warning";
InfoItemType[InfoItemType["internalProcessingError"] = 5] = "internalProcessingError";
InfoItemType[InfoItemType["recommendation"] = 6] = "recommendation";
InfoItemType[InfoItemType["featureAggregate"] = 7] = "featureAggregate";
InfoItemType[InfoItemType["testCompleteNoApplicableItemsFound"] = 8] = "testCompleteNoApplicableItemsFound";
})(InfoItemType || (exports.InfoItemType = InfoItemType = {}));