UNPKG

bc-minecraft-bedrock-project

Version:

The typescript library responsible for reading/parsing minecraft bedrock data

49 lines 1.06 kB
import * as General from '../general/controllers/state'; import { FormatVersion } from '../types'; /** */ export interface AnimationControllers extends Readonly<FormatVersion> { /** */ format_version: string; /** */ animation_controllers: { /** */ [controller: string]: AnimationController; }; } /** */ export declare namespace AnimationControllers { /** * * @param value * @returns */ function is(value: any): value is AnimationControllers; } /** */ export interface AnimationController { /** */ initial_state?: string; /** */ states: Record<string, State>; } /** */ export declare namespace AnimationController { /** * * @param value * @returns */ function is(value: any): value is AnimationController; } export interface State extends General.State { } /** */ export declare namespace State { /** * * @param value * @returns */ function is(value: any): value is State; } //# sourceMappingURL=animation-controller.d.ts.map