bc-minecraft-bedrock-project
Version:
The typescript library responsible for reading/parsing minecraft bedrock data
39 lines • 764 B
TypeScript
import { FormatVersion } from '../types';
/** */
export interface Animation {
/** */
animation_length?: number;
/** */
loop?: boolean;
/** */
timeline?: Record<string, string | string[]>;
}
/** */
export declare namespace Animation {
/**
*
* @param value
* @returns
*/
function is(value: any): value is Animation;
}
/** */
export interface Animations extends Readonly<FormatVersion> {
/** */
format_version: string;
/** */
animations: {
/** */
[animation: string]: Animation;
};
}
/** */
export declare namespace Animations {
/**
*
* @param value
* @returns
*/
function is(value: any): value is Animations;
}
//# sourceMappingURL=animation.d.ts.map