UNPKG

@yandex/ymaps3-types

Version:

Types for ymaps3 maps library

15 lines (14 loc) 215 B
/** * Axis-aligned bounding box in 2D space. */ interface BBox2 { minX: number; maxX: number; minY: number; maxY: number; } interface Vec2 { x: number; y: number; } export { BBox2, Vec2 };