Interface MinecraftIds

A table to translate Minecraft ID strings to numeric IDs and back; only item IDs

interface MinecraftIds {
    nums: Map<`minecraft:${string}`, number>;
    strings: Map<number, `minecraft:${string}`>;
}

Properties

Properties

nums: Map<`minecraft:${string}`, number>

An object with key value pairs mapping string IDs -> string IDs

strings: Map<number, `minecraft:${string}`>

An object with key value pairs mapping numeric IDs -> string IDs

Generated using TypeDoc