We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 318a9a9 commit 731b8e8Copy full SHA for 731b8e8
1 file changed
packages/openops/src/lib/openops-tables/types/table-workspace.ts
@@ -1,4 +1,4 @@
1
-type User = {
+export type WorkspaceUser = {
2
id: number;
3
name: string;
4
email: string;
@@ -12,7 +12,7 @@ type User = {
12
export type TableWorkspace = {
13
14
15
- users: User[];
+ users: WorkspaceUser[];
16
order: number;
17
permissions: string;
18
unread_notifications_count: number;
0 commit comments