mc-anvil
Version:
A Typescript library for reading Minecraft Anvil format files and Minecraft NBT format files in the browser.
21 lines • 842 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TagType = void 0;
var TagType;
(function (TagType) {
TagType[TagType["END"] = 0] = "END";
TagType[TagType["BYTE"] = 1] = "BYTE";
TagType[TagType["SHORT"] = 2] = "SHORT";
TagType[TagType["INT"] = 3] = "INT";
TagType[TagType["LONG"] = 4] = "LONG";
TagType[TagType["FLOAT"] = 5] = "FLOAT";
TagType[TagType["DOUBLE"] = 6] = "DOUBLE";
TagType[TagType["BYTE_ARRAY"] = 7] = "BYTE_ARRAY";
TagType[TagType["STRING"] = 8] = "STRING";
TagType[TagType["LIST"] = 9] = "LIST";
TagType[TagType["COMPOUND"] = 10] = "COMPOUND";
TagType[TagType["INT_ARRAY"] = 11] = "INT_ARRAY";
TagType[TagType["LONG_ARRAY"] = 12] = "LONG_ARRAY";
})(TagType = exports.TagType || (exports.TagType = {}));
;
//# sourceMappingURL=types.js.map