@tarojsx/library
Version:
Taro3 library
11 lines (10 loc) • 1.12 kB
TypeScript
import React from 'react';
import { ScrollViewProps } from '@tarojs/components/types/ScrollView';
export interface OuterScrollViewProps extends ScrollViewProps {
}
/**
* Container scroll view
*
* Use provided width/height synthesize standard onScroll event
*/
export declare const OuterScrollView: React.ForwardRefExoticComponent<Pick<OuterScrollViewProps, "style" | "id" | "scrollX" | "scrollY" | "upperThreshold" | "lowerThreshold" | "scrollTop" | "scrollLeft" | "scrollIntoView" | "scrollWithAnimation" | "enableBackToTop" | "enableFlex" | "scrollAnchoring" | "refresherEnabled" | "refresherThreshold" | "refresherDefaultStyle" | "refresherBackground" | "refresherTriggered" | "onScrollToUpper" | "onScrollToLower" | "onScroll" | "onRefresherPulling" | "onRefresherRefresh" | "onRefresherRestore" | "onRefresherAbort" | "className" | "key" | "hidden" | "animation" | "onTouchStart" | "onTouchMove" | "onTouchCancel" | "onTouchEnd" | "onClick" | "onLongPress" | "onLongClick" | "onTransitionEnd" | "onAnimationStart" | "onAnimationIteration" | "onAnimationEnd" | "onTouchForceChange"> & React.RefAttributes<any>>;