From de6a7a10f725b73fe31591a4f6d1a9ccdc12f19e Mon Sep 17 00:00:00 2001 From: Thibaut Tiberghien Date: Wed, 3 Jul 2024 12:31:10 +0800 Subject: [PATCH] door automatic is nullable --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 3893d10..f10790f 100644 --- a/index.ts +++ b/index.ts @@ -4,7 +4,7 @@ export type Polygonal = Polygon | MultiPolygon export interface Door { type: DOOR_TYPE | null, - automatic: boolean, + automatic: boolean | null, material: "wood" | "glass" | "metal" | "gate" | null }