Skip to main content
Module

x/nbt_parser/index.ts>Types

NBT Data parser for Deno
Latest
type alias Types
import { type Types } from "https://deno.land/x/nbt_parser@v1.3.0/index.ts";
definition: { [[Tag.end]]: Pair<Tag.end, 0>; [[Tag.byte]]: Pair<Tag.byte, number>; [[Tag.short]]: Pair<Tag.short, number>; [[Tag.int]]: Pair<Tag.int, number>; [[Tag.long]]: Pair<Tag.long, bigint>; [[Tag.float]]: Pair<Tag.float, number>; [[Tag.double]]: Pair<Tag.double, number>; [[Tag.byteArray]]: Pair<Tag.byteArray, number[]>; [[Tag.string]]: Pair<Tag.string, string>; [[Tag.list]]: List<Tag>; [[Tag.compound]]: Pair<Tag.compound, { [key: string]: undefined | Types[Tag]; }>; [[Tag.intArray]]: Pair<Tag.intArray, number[]>; [[Tag.longArray]]: Pair<Tag.longArray, bigint[]>; }