UNPKG

bc-minecraft-bedrock-project

Version:

The typescript library responsible for reading/parsing minecraft bedrock data

33 lines (32 loc) 680 B
import { SMap } from "../../types"; import { FormatVersion } from "../types/format-version"; /** */ export interface Item extends Readonly<FormatVersion> { /** */ format_version: string; /** */ "minecraft:item": { /** */ description: { /** */ identifier: string; /** */ category?: string; /** */ is_experimental?: boolean; }; /** */ components: SMap<any>; /** */ events?: SMap<any>; }; } /** */ export declare namespace Item { /** * * @param value * @returns */ function is(value: any): value is Item; }