This interface represents a specific leveled enchantment that is applied to an item.
export interface Enchantment { level: number; type: EnchantmentType;} Copy
export interface Enchantment { level: number; type: EnchantmentType;}
The level of this enchantment instance.
The enchantment type of this instance.
This interface represents a specific leveled enchantment that is applied to an item.
Source