Merge pull request #17116 from futurizing/patch-1

Correct `getBounds()`'s return type on `Map` class for googlemaps
This commit is contained in:
Mine Starks
2017-06-15 15:59:32 -07:00
committed by GitHub
+1 -1
View File
@@ -32,7 +32,7 @@ declare namespace google.maps {
export class Map extends MVCObject {
constructor(mapDiv: Element|null, opts?: MapOptions);
fitBounds(bounds: LatLngBounds|LatLngBoundsLiteral): void;
getBounds(): LatLngBounds;
getBounds(): LatLngBounds|null|undefined;
getCenter(): LatLng;
getDiv(): Element;
getHeading(): number;