UNPKG
@yandex/ymaps3-types
Version:
latest (1.0.16370444)
1.0.16370444
1.0.16347483
1.0.16311465
1.0.16239869
1.0.16202685
1.0.16190710
1.0.16159873
1.0.16076882
1.0.16036921
1.0.16029232
1.0.15975116
1.0.15943616
1.0.15894956
1.0.15731128
1.0.15728622
1.0.15542062
1.0.15505218
1.0.15483423
1.0.15471498
1.0.15457591
1.0.15395607
1.0.15379247
1.0.15285770
1.0.15214209
1.0.15194938
1.0.15147272
0.0.15120917
0.0.15118796
0.0.15116887
0.0.15101134
0.0.15099358
0.0.15098584
0.0.15098170
0.0.15095390
0.0.15092073
0.0.15091277
0.0.15090529
0.0.15085412
0.0.1511688-9.1
0.0.1511688-7.1
0.0.29
0.0.28
0.0.27
0.0.26
0.0.25
0.0.24
0.0.23
0.0.22
0.0.21
0.0.20
0.0.19
0.0.18
0.0.17
0.0.16
0.0.15
0.0.14
0.0.13
0.0.12
0.0.11
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Types for ymaps3 maps library
yandex.ru/dev/maps/jsapi/doc/3.0/
@yandex/ymaps3-types
/
common
/
types
/
vec2.d.ts
15 lines
(14 loc)
•
215 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * 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 };