From c3d74dd8f25f3bb927cbd5e55370d358b5d60c1b Mon Sep 17 00:00:00 2001 From: Yukiya Nakagawa Date: Sun, 20 Mar 2016 01:43:54 +0900 Subject: [PATCH] Add generics for polyline --- polyline/polyline.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polyline/polyline.d.ts b/polyline/polyline.d.ts index 78fb292d1..17389ed7e 100644 --- a/polyline/polyline.d.ts +++ b/polyline/polyline.d.ts @@ -8,7 +8,7 @@ interface Polyline { decode(string: string, precision?: number): number[][]; encode(coordinate: number[][], precision?: number): string; - fromGeoJSON(geojson: GeoJSON.LineString | GeoJSON.Feature, precision?: number): string; + fromGeoJSON(geojson: GeoJSON.LineString | GeoJSON.Feature, precision?: number): string; } declare var polyline: Polyline;