UNPKG

bc-minecraft-bedrock-project

Version:

The typescript library responsible for reading/parsing minecraft bedrock data

24 lines 547 B
import { ComponentContainer } from 'bc-minecraft-bedrock-types/src/minecraft/components'; import { FormatVersion } from '../types/format-version'; /** */ export interface Biome extends Readonly<FormatVersion> { /** */ 'minecraft:biome': { description: { identifier: string; }; components: ComponentContainer; }; } /** * */ export declare namespace Biome { /** * * @param value * @returns */ function is(value: any): value is Biome; } //# sourceMappingURL=biome.d.ts.map