@@ -7,6 +7,8 @@ export declare type PropType = {
7
7
rightThreshold ?: number ;
8
8
fullLeftThreshold ?: number ;
9
9
fullSwipeLeft ?: boolean ;
10
+ fullRightThreshold ?: number ;
11
+ fullSwipeRight ?: boolean ;
10
12
overshootLeft ?: boolean ;
11
13
overshootRight ?: boolean ;
12
14
overshootFriction ?: number ;
@@ -20,6 +22,8 @@ export declare type PropType = {
20
22
onSwipeableWillClose ?: Function ;
21
23
onFullSwipeLeft ?: Function ;
22
24
onWillFullSwipeLeft ?: Function ;
25
+ onFullSwipeRight ?: Function ;
26
+ onWillFullSwipeRight ?: Function ;
23
27
onDragStart ?: Function ;
24
28
renderLeftActions ?: ( progressAnimatedValue : any , dragAnimatedValue : any ) => any ;
25
29
renderRightActions ?: ( progressAnimatedValue : any , dragAnimatedValue : any ) => any ;
@@ -43,6 +47,7 @@ export default class Swipeable extends Component<PropType, StateType> {
43
47
overshootFriction : number ;
44
48
useNativeAnimations : boolean ;
45
49
fullLeftThreshold : number ;
50
+ fullRightThreshold : number ;
46
51
} ;
47
52
constructor ( props : PropType ) ;
48
53
UNSAFE_componentWillUpdate ( props : PropType , state : StateType ) : void ;
@@ -58,7 +63,9 @@ export default class Swipeable extends Component<PropType, StateType> {
58
63
_currentOffset : ( ) => number ;
59
64
close : ( ) => void ;
60
65
openLeft : ( ) => void ;
66
+ openLeftFull : ( ) => void ;
61
67
openRight : ( ) => void ;
68
+ openRightFull : ( ) => void ;
62
69
_onRowLayout : ( { nativeEvent } : {
63
70
nativeEvent : any ;
64
71
} ) => void ;
0 commit comments