UNPKG

@itwin/appui-abstract

Version:
11 lines 337 B
/** @packageDocumentation * @module Utilities */ /** Describes 2d points. * @public @deprecated in 4.2.0 - might be removed in next major version. Use @core/geometry [[Geometry.XAndY]] or your own custom type. */ export interface PointProps { readonly x: number; readonly y: number; } //# sourceMappingURL=PointProps.d.ts.map