( multiValue: MultiValue<Option> )
| 390 | } |
| 391 | |
| 392 | export function multiValueAsValue<Option, IsMulti extends boolean>( |
| 393 | multiValue: MultiValue<Option> |
| 394 | ): OnChangeValue<Option, IsMulti> { |
| 395 | return multiValue as OnChangeValue<Option, IsMulti>; |
| 396 | } |
| 397 | |
| 398 | export const removeProps = <Props extends object, K extends string[]>( |
| 399 | propsObj: Props, |
no outgoing calls
no test coverage detected
searching dependent graphs…