bc-minecraft-bedrock-project
Version:
The typescript library responsible for reading/parsing minecraft bedrock data
26 lines (25 loc) • 558 B
TypeScript
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:client_biome": {
description: {
identifier: string;
};
components: ComponentContainer;
};
}
/**
*
*/
export declare namespace Biome {
/**
*
* @param value
* @returns
*/
function is(value: any): value is Biome;
}