isaac-typescript-definitions
Version:
TypeScript definitions for The Binding of Isaac: Repentance.
12 lines (11 loc) • 442 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ItemType = void 0;
var ItemType;
(function (ItemType) {
ItemType[ItemType["NULL"] = 0] = "NULL";
ItemType[ItemType["PASSIVE"] = 1] = "PASSIVE";
ItemType[ItemType["TRINKET"] = 2] = "TRINKET";
ItemType[ItemType["ACTIVE"] = 3] = "ACTIVE";
ItemType[ItemType["FAMILIAR"] = 4] = "FAMILIAR";
})(ItemType || (exports.ItemType = ItemType = {}));
;