-
Notifications
You must be signed in to change notification settings - Fork 434
/
Copy pathindex.tsx
27 lines (22 loc) · 926 Bytes
/
index.tsx
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
import type * as ReactNative from 'react-native';
import { PagerView } from './PagerView';
export default PagerView;
export * from './usePagerView';
import type {
OnPageScrollEventData as PagerViewOnPageScrollEventData,
OnPageSelectedEventData as PagerViewOnPageSelectedEventData,
OnPageScrollStateChangedEventData as PageScrollStateChangedNativeEventData,
NativeProps,
} from './PagerViewNativeComponent';
export type {
PagerViewOnPageScrollEventData,
PagerViewOnPageSelectedEventData,
PageScrollStateChangedNativeEventData,
NativeProps as PagerViewProps,
};
export type PagerViewOnPageScrollEvent =
ReactNative.NativeSyntheticEvent<PagerViewOnPageScrollEventData>;
export type PagerViewOnPageSelectedEvent =
ReactNative.NativeSyntheticEvent<PagerViewOnPageSelectedEventData>;
export type PageScrollStateChangedNativeEvent =
ReactNative.NativeSyntheticEvent<PageScrollStateChangedNativeEventData>;