| 78 | ) => string; |
| 79 | |
| 80 | export interface CountConfig { |
| 81 | max?: number; |
| 82 | strategy?: (value: string) => number; |
| 83 | show?: boolean | ShowCountFormatter; |
| 84 | /** Trigger when content larger than the `max` limitation */ |
| 85 | exceedFormatter?: ExceedFormatter; |
| 86 | } |
| 87 | |
| 88 | export interface InputProps |
| 89 | extends CommonInputProps, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…