From bcbb438661fe4d6902f8d29607054a763f0934e0 Mon Sep 17 00:00:00 2001 From: Justin Poehnelt Date: Wed, 12 Aug 2020 17:51:38 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#46668=20fix(google?= =?UTF-8?q?maps):=20add=20missing=20LatLngLiteral=20from=20elevation=20req?= =?UTF-8?q?uests=20by=20@jpoehnelt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/googlemaps/reference/elevation.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/googlemaps/reference/elevation.d.ts b/types/googlemaps/reference/elevation.d.ts index a61ca1290f..8bc5062ac9 100644 --- a/types/googlemaps/reference/elevation.d.ts +++ b/types/googlemaps/reference/elevation.d.ts @@ -11,11 +11,11 @@ declare namespace google.maps { } interface LocationElevationRequest { - locations: LatLng[]; + locations: Array; } interface PathElevationRequest { - path?: LatLng[]; + path?: Array; samples?: number; }