UNPKG

bc-minecraft-bedrock-project

Version:

The typescript library responsible for reading/parsing minecraft bedrock data

16 lines (15 loc) 321 B
import { MCProject } from "bc-minecraft-project"; /** */ export interface Container { /**The nessacary Minecraft project data*/ readonly context: MCProject; } /** */ export declare namespace Container { /** * * @param value * @returns */ function is(value: any): value is Container; }