isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
9 lines • 369 B
TypeScript
import type { PocketItemSlot } from "isaac-typescript-definitions";
import type { PocketItemType } from "../enums/PocketItemType";
/** This is used by the `getPocketItems` and related helper functions. */
export interface PocketItemDescription {
slot: PocketItemSlot;
type: PocketItemType;
subType: int;
}
//# sourceMappingURL=PocketItemDescription.d.ts.map