| 26 | |
| 27 | // Dropdown option interface |
| 28 | interface DropdownOption { |
| 29 | value: string; |
| 30 | label: string; |
| 31 | } |
| 32 | |
| 33 | // Dropdown type for identifying which dropdown is open |
| 34 | type DropdownType = 'turnMode' | 'moderator' | 'initiator' | 'subTopic' | 'turns' | 'pattern' | null; |
nothing calls this directly
no outgoing calls
no test coverage detected