isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
10 lines (8 loc) • 313 B
text/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;
}