| 1 | import { GroupedOptionsType } from 'react-select'; |
| 2 | |
| 3 | export interface StatusOption { |
| 4 | value: string; |
| 5 | label: string; |
| 6 | highlight?: boolean; |
| 7 | } |
| 8 | |
| 9 | type StatusGroupedOptions = GroupedOptionsType<StatusOption>; |
| 10 |
nothing calls this directly
no outgoing calls
no test coverage detected