-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb55b9a
commit 023ea8b
Showing
3 changed files
with
17 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
declare module "react-native-swipe-up-down" { | ||
import { StyleProp, ViewStyle } from "react-native"; | ||
export interface SwipeUpDownProps { | ||
extraMarginTop?: number; | ||
swipeHeight?: number; | ||
itemMini?: object; | ||
itemFull: object; | ||
disableSwipeIcon?: boolean; | ||
style?: StyleProp<ViewStyle>; | ||
onShowMini?: () => void; | ||
onShowFull?: () => void; | ||
animation?: "linear" | "spring" | "easeInEaseOut" | "none"; | ||
} | ||
const SwipeUpDown: SwipeUpDownProps; | ||
import * as React from 'react'; | ||
import { StyleProp, ViewStyle } from "react-native"; | ||
|
||
export default SwipeUpDown; | ||
} | ||
interface SwipeUpDownProps { | ||
extraMarginTop?: number; | ||
swipeHeight?: number; | ||
itemMini?: object; | ||
itemFull: object; | ||
disableSwipeIcon?: boolean; | ||
style?: StyleProp<ViewStyle>; | ||
onShowMini?: () => void; | ||
onShowFull?: () => void; | ||
animation?: "linear" | "spring" | "easeInEaseOut"; | ||
} | ||
|
||
export default function SwipeUpDown(props: SwipeUpDownProps): JSX.Element; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters