UNPKG

nbtify

Version:

A library to read and write NBT files on the web!

6 lines (5 loc) 189 B
import type { RootTag, RootTagLike } from "./tag.js"; /** * Converts an SNBT string into an NBT object. */ export declare function parse<T extends RootTagLike = RootTag>(data: string): T;