AnimationTool/app/Interfaces/IFramePinData.ts

7 lines
82 B
TypeScript
Raw Normal View History

2019-09-26 01:59:16 +00:00
export interface IFramePinData {
2019-10-09 01:50:03 +00:00
[id: number]: {
x: number;
y: number;
};
2019-09-26 01:59:16 +00:00
}