forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
react-swipeable-views.d.ts
37 lines (31 loc) · 1.17 KB
/
react-swipeable-views.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Type definitions for react-swipeable-views
// Project: https://github.com/oliviertassinari/react-swipeable-views
// Definitions by: Michael Ledin <https://github.com/mxl>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
///<reference path='../react/react.d.ts' />
declare namespace ReactSwipeableViews {
import React = __React;
export interface SwipeableViewsProps extends React.Props<SwipeableViews> {
containerStyle?: React.CSSProperties;
disabled?: boolean;
index?: number;
onChangeIndex?: (indexNew:number, indexLatest:number) => void;
onSwitching?: (index:number) => void;
resistance?: boolean;
slideStyle?: React.CSSProperties;
style?: React.CSSProperties;
threshold?: number;
}
interface SwipeableViewsState {
indexCurrent?: number;
indexLatest?: number;
isDragging?: boolean;
isFirstRender?: boolean;
heightLatest?: number;
}
export class SwipeableViews extends React.Component<SwipeableViewsProps, SwipeableViewsState> {
}
}
declare module 'react-swipeable-views' {
export default ReactSwipeableViews.SwipeableViews;
}