参考类型XYPositionXYPosition 所有位置都存储在一个包含 x 和 y 坐标的对象中。 export type XYPosition = { x: number; y: number; };类型