Skip to content

Commit

Permalink
fix(all): added missing events to TS declaration file
Browse files Browse the repository at this point in the history
  • Loading branch information
Finn Gutteridge committed Jan 5, 2020
1 parent 32e57b6 commit 3d1ef61
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/map-view.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,20 @@ export class MapView extends View {
public updatePadding(): void;

public static mapReadyEvent: string;
public static myLocationTappedEvent: string;
public static coordinateTappedEvent: string;
public static coordinateLongPressEvent: string;
public static markerSelectEvent: string;
public static markerInfoWindowTappedEvent: string;
public static shapeSelectEvent: string;
public static markerBeginDraggingEvent: string;
public static markerEndDraggingEvent: string;
public static markerDragEvent: string;
public static coordinateTappedEvent: string;
public static coordinateLongPressEvent: string;
public static markerInfoWindowTappedEvent: string;
public static markerInfoWindowClosedEvent: string;
public static shapeSelectEvent: string;
public static cameraChangedEvent: string;
public static myLocationTappedEvent: string
public static cameraMoveEvent: string;
public static indoorBuildingFocusedEvent: string;
public static indoorLevelActivatedEvent: string;

public nativeView: any; /* GMSMapView | com.google.android.gms.maps.MapView */

Expand Down

0 comments on commit 3d1ef61

Please sign in to comment.