XYPosition
All positions are stored in an object with x and y coordinates.
export type XYPosition = {
  x: number;
  y: number;
};All positions are stored in an object with x and y coordinates.
export type XYPosition = {
  x: number;
  y: number;
};