AnimationTool/app/Interfaces/IAnimationData.ts

12 lines
223 B
TypeScript
Raw Normal View History

2019-09-26 01:59:16 +00:00
import { IFrame } from './IFrame';
import { IPin } from './IPin';
export interface IAnimationData {
frameRate: number;
2019-10-04 01:02:08 +00:00
originX: number | null;
originY: number | null;
2019-09-26 01:59:16 +00:00
loop: boolean;
frames: IFrame[];
pins: IPin[];
}