mirror of
https://github.com/Xevion/byte-me.git
synced 2025-12-15 18:11:19 -06:00
5 lines
82 B
TypeScript
5 lines
82 B
TypeScript
export type Frame = {
|
|
id: string;
|
|
data: { x: string | number; y: number }[];
|
|
};
|