bc-minecraft-bedrock-project
Version:
The typescript library responsible for reading/parsing minecraft bedrock data
22 lines (21 loc) • 413 B
TypeScript
import { Types } from 'bc-minecraft-bedrock-types';
/** */
export interface State {
/** */
animations?: (Types.Conditional | string)[];
/** */
on_entry?: string[];
/** */
on_exit?: string[];
/** */
transitions?: Types.Conditional[];
}
/** */
export declare namespace State {
/**
*
* @param value
* @returns
*/
function is(value: any): value is State;
}