forked from lawnstarter/react-native-picker-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
28 lines (27 loc) · 786 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/// <reference types="react" />
declare module 'react-native-picker-select' {
export interface Item {
label: string;
value: any;
key?: string;
color?: string;
}
type ModeOptions = 'dialog' | 'dropdown';
export interface PickerProps {
onValueChange: (value: any, index: number) => void;
items: Item[];
placeholder?: Item | {};
disabled?: boolean;
value?: any;
itemKey?: string | number;
style?: object;
hideIcon?: boolean;
hideDoneBar?: boolean;
onUpArrow?: () => void;
onDownArrow?: () => void;
mode?: ModeOptions;
onDonePress?: () => void;
}
class Picker extends React.Component<PickerProps> {}
export default Picker;
}