user.ts 109 B

12345678
  1. type User = {
  2. id: string;
  3. name?: string;
  4. email?: string;
  5. workspaces: string[];
  6. };
  7. export type { User };