(/* props */)
| 4 | const TimerMixin = require('react-timer-mixin'); |
| 5 | |
| 6 | const ensurePositiveDelayProps = (/* props */) => { |
| 7 | // invariant( |
| 8 | // !(props.delayPressIn < 0 || props.delayPressOut < 0 || props.delayLongPress < 0), |
| 9 | // 'Touchable components cannot have negative delay properties' |
| 10 | // ); |
| 11 | }; |
| 12 | |
| 13 | const InsetPropType = PropTypes.shape({ |
| 14 | top: PropTypes.number, |
no outgoing calls
no test coverage detected
searching dependent graphs…