UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

21 lines (20 loc) 877 B
"use strict"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. Object.defineProperty(exports, "__esModule", { value: true }); exports.ToolType = exports.ToolScope = void 0; var ToolScope; (function (ToolScope) { ToolScope[ToolScope["global"] = 0] = "global"; ToolScope[ToolScope["project"] = 1] = "project"; })(ToolScope || (exports.ToolScope = ToolScope = {})); var ToolType; (function (ToolType) { ToolType[ToolType["executeGameTest"] = 0] = "executeGameTest"; ToolType[ToolType["runCommand"] = 1] = "runCommand"; ToolType[ToolType["pushStructure"] = 2] = "pushStructure"; ToolType[ToolType["reload"] = 3] = "reload"; ToolType[ToolType["say"] = 4] = "say"; ToolType[ToolType["playSound"] = 5] = "playSound"; ToolType[ToolType["customTool"] = 6] = "customTool"; })(ToolType || (exports.ToolType = ToolType = {}));