1 | import { LatLngLiteral } from './services/google-maps-types';
|
2 | export { KmlMouseEvent, LatLngBounds, LatLngBoundsLiteral, LatLngLiteral, PolyMouseEvent } from './services/google-maps-types';
|
3 | /**
|
4 | * MouseEvent gets emitted when the user triggers mouse events on the map.
|
5 | */
|
6 | export interface MouseEvent {
|
7 | coords: LatLngLiteral;
|
8 | }
|