From 3557741f13ee09b3119b0ce22b0478aca3c76457 Mon Sep 17 00:00:00 2001 From: marihachi Date: Sat, 22 May 2021 16:36:37 +0900 Subject: [PATCH] Append null to TODO type --- src/entities.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entities.ts b/src/entities.ts index 9c4b9250c..e897da838 100644 --- a/src/entities.ts +++ b/src/entities.ts @@ -1,7 +1,7 @@ export type ID = string; export type DateString = string; -type TODO = Record; +type TODO = Record | null; export type User = { id: ID;