From 6eae3bf1bd2d980fc8c8527d25275dfd8bb29df2 Mon Sep 17 00:00:00 2001 From: zhutian chen Date: Sat, 13 May 2017 01:04:23 +0800 Subject: [PATCH] should contain a type in the return of feature --- types/topojson/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/topojson/index.d.ts b/types/topojson/index.d.ts index bafc431ea3..68efb8ee9c 100644 --- a/types/topojson/index.d.ts +++ b/types/topojson/index.d.ts @@ -5,7 +5,7 @@ export function bbox(topology: any): any; -export function feature(topology: any, o: any): { features: any[]; }; +export function feature(topology: any, o: any): { features: any[]; type: string }; export function filter(topology: any, filter: any): any;