( ownerUsername: string, name: string, )
| 37 | export const workspacesQueryKeyPrefix = ["workspaces"] as const; |
| 38 | |
| 39 | export const workspaceByOwnerAndNameKey = ( |
| 40 | ownerUsername: string, |
| 41 | name: string, |
| 42 | ) => ["workspace", ownerUsername, name, "settings"]; |
| 43 | |
| 44 | export const workspaceByIdKey = (workspaceId: string) => |
| 45 | ["workspace", workspaceId] as const; |
no outgoing calls
no test coverage detected