| 68 | |
| 69 | export type RawValueType = string | number; |
| 70 | export interface LabelInValueType { |
| 71 | label: React.ReactNode; |
| 72 | value: RawValueType; |
| 73 | /** @deprecated `key` is useless since it should always same as `value` */ |
| 74 | key?: React.Key; |
| 75 | } |
| 76 | |
| 77 | export type DraftValueType = |
| 78 | | RawValueType |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…