CollaboratorState
type CollaboratorState = {
[key: string]: unknown;
isDeleted: boolean;
projectId: string;
state: "active" | "invited";
userId: string;
workspaceRole?: "ADMIN" | "MEMBER" | "GUEST";
};
Type Declaration
Index Signature
[key: string]: unknown
| Name | Type |
|---|---|
isDeleted | boolean |
projectId | string |
state | "active" | "invited" |
userId | string |
workspaceRole? | "ADMIN" | "MEMBER" | "GUEST" |