UNPKG

react-native-ui-lib

Version:

[![Build Status](https://travis-ci.org/wix/react-native-ui-lib.svg?branch=master)](https://travis-ci.org/wix/react-native-ui-lib) [![npm](https://img.shields.io/npm/v/react-native-ui-lib.svg)](https://www.npmjs.com/package/react-native-ui-lib) [![NPM Down

26 lines (25 loc) 761 B
import { Component } from "react"; declare type WheelPickerDialogProps = { items?: any[]; selectedValue?: string | number; title?: string; onCancel?: (...args: any[]) => any; onSelect?: (...args: any[]) => any; onValueChange?: (...args: any[]) => any; }; declare type WheelPickerDialogState = { currentValue: any | boolean; initalSelectedValue: any; }; export default class WheelPickerDialog extends Component<WheelPickerDialogProps, WheelPickerDialogState> { static displayName: string; constructor(props: any); state: { initalSelectedValue: string | number; currentValue: boolean; }; onValueChange(value: any, index: any): void; onSelect(): void; render(): JSX.Element; } export {};