mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-27 19:22:47 +00:00
11 lines
255 B
TypeScript
11 lines
255 B
TypeScript
declare namespace AMap {
|
|
class ArrayBounds {
|
|
constructor(bounds: LocationValue[]);
|
|
bounds: LngLat[];
|
|
contains(point: LocationValue): boolean;
|
|
// internal
|
|
toBounds(): Bounds;
|
|
getCenter(): LngLat;
|
|
}
|
|
}
|