AnimationTool/app/Interfaces/IAnimationData.ts

12 lines
263 B
TypeScript

import { IFrame } from './IFrame';
import { IPinDefinition } from './IPinDefinition';
export interface IAnimationData {
frameRate: number;
originX: number | null;
originY: number | null;
loop: boolean;
frames: IFrame[];
pinDefinitions: IPinDefinition[];
}