UNPKG

bc-minecraft-bedrock-project

Version:

The typescript library responsible for reading/parsing minecraft bedrock data

13 lines (12 loc) 298 B
import { FormatVersion } from "../types/format-version"; /** */ export interface Material extends Readonly<FormatVersion> { /** */ format_version: string; /** */ [material: string]: any; } /** */ export declare namespace Material { function is(value: any): value is Material; }