From ed65b59f16c6404a16fb1e41ab08355cbd54b011 Mon Sep 17 00:00:00 2001 From: 44ka28ta <44ka28ta@gmail.com> Date: Wed, 22 Jan 2014 22:37:54 +0900 Subject: [PATCH] fix the return type of google.maps.geometry.encoding.decodePath. --- 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 3be446e19..d3620d2cf 100644 --- a/googlemaps/google.maps.d.ts +++ b/googlemaps/google.maps.d.ts @@ -1242,7 +1242,7 @@ declare module google.maps { /***** Geometry Library *****/ export module geometry { export class encoding { - static decodePath(encodedPath: string): LatLng; + static decodePath(encodedPath: string): LatLng[]; static encodePath(path: any[]): string; }