UNPKG

@sdcx/pull-to-refresh

Version:
9 lines (6 loc) 362 B
import type { HostComponent, ViewProps, CodegenTypes } from 'react-native'; import { codegenNativeComponent } from 'react-native'; export interface NativeProps extends ViewProps { requestDisallowInterceptTouchEvent?: CodegenTypes.WithDefault<boolean, true>; } export default codegenNativeComponent<NativeProps>('PullToRefresh') as HostComponent<NativeProps>;