UNPKG

390 BTypeScriptView Raw
1export interface IPickerProps {
2 disabled?: boolean;
3 selectedValue?: any;
4 onValueChange?: (value: any) => void;
5 itemStyle?: any;
6 /** web only */
7 prefixCls?: string;
8 indicatorStyle?: any;
9 indicatorClassName?: string;
10 className?: string;
11 defaultSelectedValue?: any;
12 style?: any;
13 onScrollChange?: (value: any) => void;
14 noAnimate?: boolean;
15}