(inputProps)
| 3478 | !(inputProps.checkedLink == null || inputProps.valueLink == null) ? "development" !== 'production' ? invariant(false, 'Cannot provide a checkedLink and a valueLink. If you want to use ' + 'checkedLink, you probably don\'t want to use valueLink and vice versa.') : invariant(false) : void 0; |
| 3479 | } |
| 3480 | function _assertValueLink(inputProps) { |
| 3481 | _assertSingleLink(inputProps); |
| 3482 | !(inputProps.value == null && inputProps.onChange == null) ? "development" !== 'production' ? invariant(false, 'Cannot provide a valueLink and a value or onChange event. If you want ' + 'to use value or onChange, you probably don\'t want to use valueLink.') : invariant(false) : void 0; |
| 3483 | } |
| 3484 | |
| 3485 | function _assertCheckedLink(inputProps) { |
| 3486 | _assertSingleLink(inputProps); |
no test coverage detected
searching dependent graphs…