-
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathindex.d.ts
More file actions
20 lines (17 loc) · 557 Bytes
/
index.d.ts
File metadata and controls
20 lines (17 loc) · 557 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import * as React from 'react';
import { StyleProp, ViewStyle } from "react-native";
interface SwipeUpDownProps {
extraMarginTop?: number;
swipeHeight?: number;
itemMini?: object;
itemFull: object;
disableSwipeIcon?: boolean;
style?: StyleProp<ViewStyle>;
onShowMini?: () => void;
onShowFull?: () => void;
animation?: "linear" | "spring" | "easeInEaseOut";
iconSize?: Number;
iconColor?: String;
}
declare class SwipeUpDownBase extends React.Component<SwipeUpDownProps> {}
export default class SwipeUpDown extends SwipeUpDownBase {}