UNPKG

isaac-typescript-definitions

Version:

TypeScript definitions for The Binding of Isaac: Repentance.

14 lines (13 loc) 643 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ItemConfigChargeType = void 0; /** * Matches the `ItemConfig.CHARGE_` members of the `ItemConfig` class. In IsaacScript, we * reimplement this as an enum instead, since it is cleaner. */ var ItemConfigChargeType; (function (ItemConfigChargeType) { ItemConfigChargeType[ItemConfigChargeType["NORMAL"] = 0] = "NORMAL"; ItemConfigChargeType[ItemConfigChargeType["TIMED"] = 1] = "TIMED"; ItemConfigChargeType[ItemConfigChargeType["SPECIAL"] = 2] = "SPECIAL"; })(ItemConfigChargeType || (exports.ItemConfigChargeType = ItemConfigChargeType = {}));