( teammateId: string, )
| 36 | * Gets the assigned color for a teammate, if any. |
| 37 | */ |
| 38 | export function getTeammateColor( |
| 39 | teammateId: string, |
| 40 | ): AgentColorName | undefined { |
| 41 | return teammateColorAssignments.get(teammateId) |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Clears all teammate color assignments. |
no test coverage detected