bc-minecraft-bedrock-project
Version:
The typescript library responsible for reading/parsing minecraft bedrock data
13 lines • 336 B
TypeScript
import { FormatVersion } from '../types/format-version';
/** */
export interface Material extends Readonly<FormatVersion> {
/** */
format_version: string;
/** */
[material: string]: any;
}
/** */
export declare namespace Material {
function is(value: any): value is Material;
}
//# sourceMappingURL=material.d.ts.map