/** * All possible MinecraftCooldownCategoryTypes */ export declare enum MinecraftCooldownCategoryTypes { Chorusfruit = "minecraft:chorusfruit", EnderPearl = "minecraft:ender_pearl", GoatHorn = "minecraft:goat_horn", Shield = "minecraft:shield", Spear = "minecraft:spear", WindCharge = "minecraft:wind_charge" } /** * Union type equivalent of the MinecraftCooldownCategoryTypes enum. */ export type MinecraftCooldownCategoryTypesUnion = keyof typeof MinecraftCooldownCategoryTypes;