From 731fbb40fa7a48b2350ce2bca0d942c91ca5e4ef Mon Sep 17 00:00:00 2001 From: denis Date: Wed, 28 Feb 2018 23:17:10 +0100 Subject: [PATCH] Remove useless null GeoJsonProperties is a union type containing null... --- types/geojson/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/geojson/index.d.ts b/types/geojson/index.d.ts index b1c7b9f39a..9a0ab3cd8b 100644 --- a/types/geojson/index.d.ts +++ b/types/geojson/index.d.ts @@ -160,7 +160,7 @@ export interface Feature * A collection of feature objects. * https://tools.ietf.org/html/rfc7946#section-3.3 */ -export interface FeatureCollection extends GeoJsonObject { +export interface FeatureCollection extends GeoJsonObject { type: "FeatureCollection"; features: Array>; }