asajs
Version:
Make your Minecraft JsonUI with ScriptingAPI
11 lines (10 loc) • 419 B
TypeScript
import { Identifier } from "../types/components/Identifier";
import { AnimationKeyFrameInterface } from "../types/objects/Animation";
import { Class } from "./Class";
export declare class AnimationKeyFrame extends Class {
private identifier;
private properties;
constructor(keyFrame: AnimationKeyFrameInterface, identifier: Identifier);
getFullPath(): string;
getUI(): AnimationKeyFrameInterface;
}