UNPKG

bc-minecraft-bedrock-project

Version:

The typescript library responsible for reading/parsing minecraft bedrock data

25 lines 484 B
/** */ export interface FormatVersion { /** */ format_version: string; } /** */ export declare namespace FormatVersion { /** * * @param value * @returns */ function is(value: any): value is FormatVersion; /** * * @param value * @returns */ function get(value: FormatVersion | number[] | string): { major: number; minor: number; patch: number; }; } //# sourceMappingURL=format-version.d.ts.map