fix the return type of google.maps.geometry.encoding.decodePath.

This commit is contained in:
44ka28ta
2014-01-22 22:37:54 +09:00
parent ccb44a7a00
commit ed65b59f16

View File

@@ -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;
}