UNPKG

@quidone/react-native-wheel-picker

Version:

Picker is a UI component for selecting an item from a list of options.

9 lines 579 B
import React from 'react'; import type { PickerProps } from '../../base'; import Picker, { PickerItem } from '../../base'; import type { AdditionalProps } from './VirtualizedList'; export type WithVirtualizedProps<ItemT extends PickerItem<any>> = AdditionalProps & PickerProps<ItemT>; type WithVirtualizedComponent = <ItemT extends PickerItem<any>>(props: WithVirtualizedProps<ItemT>) => React.ReactElement; declare const withVirtualized: (WrappedComponent: typeof Picker) => WithVirtualizedComponent; export default withVirtualized; //# sourceMappingURL=withVirtualized.d.ts.map