UNPKG

bc-minecraft-bedrock-project

Version:

The typescript library responsible for reading/parsing minecraft bedrock data

26 lines (25 loc) 551 B
import { ComponentContainer } from 'bc-minecraft-bedrock-types/lib/minecraft/components'; import { FormatVersion } from "../types/format-version"; /** */ export interface Biome extends Readonly<FormatVersion> { /** */ format_version: string; /** */ "minecraft:biome": { description: { identifier: string; }; components: ComponentContainer; }; } /** * */ export declare namespace Biome { /** * * @param value * @returns */ function is(value: any): value is Biome; }