(service: WorkspaceService, workspaceId: string)
| 64 | |
| 65 | // Helper to access private renamingWorkspaces set |
| 66 | function addToRenamingWorkspaces(service: WorkspaceService, workspaceId: string): void { |
| 67 | // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call |
| 68 | (service as any).renamingWorkspaces.add(workspaceId); |
| 69 | } |
| 70 | |
| 71 | // Helper to access private archivingWorkspaces set |
| 72 | function addToArchivingWorkspaces(service: WorkspaceService, workspaceId: string): void { |
no test coverage detected