@itwin/appui-abstract
Version:
iTwin.js UI abstractions
11 lines • 341 B
TypeScript
/** @packageDocumentation
* @module Utilities
*/
/** Describes 2d points.
* @public @deprecated in 4.2.x - will not be removed until after 2026-06-13. Use @core/geometry [[Geometry.XAndY]] or your own custom type.
*/
export interface PointProps {
readonly x: number;
readonly y: number;
}
//# sourceMappingURL=PointProps.d.ts.map