@gorhom/bottom-sheet
Version:
A performant interactive bottom sheet with fully configurable options 🚀
20 lines (17 loc) • 579 B
text/typescript
import type {
TouchableOpacity as RNTouchableOpacity,
TouchableHighlight as RNTouchableHighlight,
TouchableWithoutFeedback as RNTouchableWithoutFeedback,
} from 'react-native';
import {
TouchableOpacity,
TouchableHighlight,
TouchableWithoutFeedback,
// @ts-ignore
} from './Touchables';
export default {
TouchableOpacity: TouchableOpacity as any as typeof RNTouchableOpacity,
TouchableHighlight: TouchableHighlight as any as typeof RNTouchableHighlight,
TouchableWithoutFeedback:
TouchableWithoutFeedback as any as typeof RNTouchableWithoutFeedback,
};