| 83 | export type FilterFunc<OptionType> = (inputValue: string, option?: OptionType) => boolean; |
| 84 | |
| 85 | export interface FieldNames { |
| 86 | value?: string; |
| 87 | label?: string; |
| 88 | groupLabel?: string; |
| 89 | options?: string; |
| 90 | } |
| 91 | |
| 92 | export interface BaseOptionType { |
| 93 | disabled?: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…