/** * 获取所有维度。 */ export declare function getAllVanillaDimensions(): Minecraft.Dimension[]; import { Minecraft } from "./basis.js"; export declare const DimensionValues: Readonly>; /** * @param {any} value * @returns {Minecraft.Dimension} */ export declare function fromValueGetDimension(value: any): Minecraft.Dimension; import type { Dimension } from "./remix/dimension.js"; export type NetherDimensionLikeValue = -1 | 'minecraft:nether' | 'nether'; export type OverworldDimensionLikeValue = 0 | 'minecraft:overworld' | 'overworld'; export type TheEndDimensionLikeValue = 1 | 'minecraft:the_end' | 'the_end' | 'theEnd' | 'the end'; export type DimensionLikeValue = NetherDimensionLikeValue | OverworldDimensionLikeValue | TheEndDimensionLikeValue | Minecraft.Dimension | Dimension;