We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 307a32a commit c29f5caCopy full SHA for c29f5ca
1 file changed
src/pressables/base.tsx
@@ -20,7 +20,9 @@ export type BasePressableProps = {
20
animatedStyle?: (progress: SharedValue<number>) => ViewStyle;
21
enabled?: boolean;
22
} & Partial<PressableContextType<'timing' | 'spring'>> &
23
- Pick<AnimatedPressableProps, 'layout' | 'entering' | 'exiting' | 'style'> & {
+ Partial<
24
+ Pick<AnimatedPressableProps, 'layout' | 'entering' | 'exiting' | 'style'>
25
+ > & {
26
onPress?: () => void;
27
onPressIn?: () => void;
28
onPressOut?: () => void;
0 commit comments