Workspaces refactor #86

Merged
norm merged 189 commits from refactor/workspaces into main 2022-08-28 14:46:45 +00:00
Showing only changes of commit 3557741f13 - Show all commits

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;