@hero-design/rn 8.64.0 → 8.64.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -36,7 +36,7 @@ export interface TabsProps extends ViewProps {
36
36
  */
37
37
  barStyle?: StyleProp<ViewStyle>;
38
38
  /**
39
- * Whether inactive screen should be removed and unmounted in React.
39
+ * Whether inactive screen should be removed and unmounted in
40
40
  * Defaults value is `false`.
41
41
  */
42
42
  lazy?: boolean;
@@ -0,0 +1,8 @@
1
+ import { NativeSyntheticEvent } from 'react-native';
2
+ declare const useHandlePageScroll: () => {
3
+ onPageScrollStateChanged: (e: NativeSyntheticEvent<Readonly<{
4
+ pageScrollState: 'idle' | 'dragging' | 'settling';
5
+ }>>) => void;
6
+ hasScrolled: import("react").MutableRefObject<boolean>;
7
+ };
8
+ export default useHandlePageScroll;