Append null to TODO type

This commit is contained in:
marihachi 2021-05-22 16:36:37 +09:00 committed by GitHub
parent 9d89314afa
commit 3557741f13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
export type ID = string;
export type DateString = string;
type TODO = Record<string, any>;
type TODO = Record<string, any> | null;
export type User = {
id: ID;