UNPKG

@aurigma/design-atoms-interfaces

Version:

10 lines (9 loc) 215 B
/** * A structure representing a point in a two-dimensional plane. */ export interface IPointF { /** The x-coordinate of the point. */ x?: number; /** The y-coordinate of the point. */ y?: number; }