fix TODO type

This commit is contained in:
marihachi
2021-05-23 14:48:42 +09:00
parent 6ae5f76250
commit adae7cf2ec
2 changed files with 5 additions and 4 deletions

View File

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