From a3acf592dd6f4c35f0412e8747441b56bfdfd4de Mon Sep 17 00:00:00 2001 From: Maximilian Harz Date: Tue, 4 Feb 2025 19:58:31 +0100 Subject: [PATCH] Allow item.position to be null --- src/types/Item.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/Item.d.ts b/src/types/Item.d.ts index 880cc9fc..938918c8 100644 --- a/src/types/Item.d.ts +++ b/src/types/Item.d.ts @@ -12,7 +12,7 @@ export interface Item { name: string text: string data?: string - position?: Point + position?: Point | null date_created?: string date_updated?: string | null start?: string