From 4f1c2d48e09fb33d65c7b4241ba09453f1ce7820 Mon Sep 17 00:00:00 2001 From: Vinh Tran Date: Sat, 5 Dec 2015 15:52:10 -0500 Subject: [PATCH] Update DirectionsWaypoint's location field optional types --- 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 87b10991e..699115473 100644 --- a/googlemaps/google.maps.d.ts +++ b/googlemaps/google.maps.d.ts @@ -959,7 +959,7 @@ declare module google.maps { export interface TransitFare { } export interface DirectionsWaypoint { - location: LatLng|string; + location: LatLng|LatLngLiteral|string; stopover: boolean; }