From 381072091d70da7a32ffa1d9a0f298dc3ca09cf9 Mon Sep 17 00:00:00 2001 From: Chris Wrench Date: Mon, 13 Jul 2015 17:25:26 +0100 Subject: [PATCH] Fix definition of `google.maps.InfoWindow.open()`. Fixes #4364. --- googlemaps/google.maps.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googlemaps/google.maps.d.ts b/googlemaps/google.maps.d.ts index b6091ef55..697a91071 100644 --- a/googlemaps/google.maps.d.ts +++ b/googlemaps/google.maps.d.ts @@ -572,7 +572,7 @@ declare module google.maps { * a Point anchorPoint property for calculating the pixelOffset (see InfoWindowOptions). * The anchorPoint is the offset from the anchor's position to the tip of the InfoWindow. */ - open(map?: StreetViewPanorama, anchor?: MVCObject): void; + open(map?: Map|StreetViewPanorama, anchor?: MVCObject): void; setContent(content: string|Node): void; setOptions(options: InfoWindowOptions): void; setPosition(position: LatLng): void;