Migrate to a monorepo structure (#2909)
This commit is contained in:
@ -0,0 +1,12 @@
|
||||
export type ColorScheme = 'Dark' | 'Light' | 'System';
|
||||
|
||||
export type WorkspaceMember = {
|
||||
id: string;
|
||||
name: {
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
};
|
||||
avatarUrl?: string | null;
|
||||
locale: string;
|
||||
colorScheme?: ColorScheme;
|
||||
};
|
||||
Reference in New Issue
Block a user