@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
13 lines (12 loc) • 472 B
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
exports.Platform = void 0;
var Platform;
(function (Platform) {
Platform[Platform["windows"] = 0] = "windows";
Platform[Platform["macOS"] = 1] = "macOS";
Platform[Platform["linux"] = 2] = "linux";
Platform[Platform["unsupported"] = 3] = "unsupported";
})(Platform || (exports.Platform = Platform = {}));