Update DirectionsWaypoint's location field optional types

This commit is contained in:
Vinh Tran
2015-12-05 15:52:10 -05:00
parent d4c62f3297
commit 4f1c2d48e0
+1 -1
View File
@@ -959,7 +959,7 @@ declare module google.maps {
export interface TransitFare { }
export interface DirectionsWaypoint {
location: LatLng|string;
location: LatLng|LatLngLiteral|string;
stopover: boolean;
}