TomatitoToho's picture
Upload src/types/item.ts with huggingface_hub
98a0e54 verified
Raw
History Blame Contribute Delete
332 Bytes
export interface ItemStack {
id: string;
count: number;
damage: number;
enchantments: Enchantment[];
nbt?: Record<string, any>;
maxStackSize: number;
durability?: number;
repairCost: number;
}
export interface Enchantment {
id: string;
level: number;
}
export interface ItemProperties {
[key: string]: any;
}