-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSelect.d.ts
41 lines (41 loc) · 1.02 KB
/
Select.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
29
30
31
32
33
34
35
36
37
38
39
40
41
declare module "@todo/module-name" {
export interface SelectProps {
allowClear?: boolean;
autoFocus?: boolean;
defaultActiveFirstOption?: boolean;
defaultValue?: any;
disabled?: boolean;
dropdownClassName?: string;
dropdownMatchSelectWidth?: boolean;
dropdownStyle?: any;
filterOption?: any;
firstActiveValue?: any;
getPopupContainer?: any;
labelInValue?: boolean;
maxTagCount?: number;
maxTagPlaceholder?: any;
mode?: any;
notFoundContent?: string;
optionFilterProp?: string;
optionLabelProp?: string;
placeholder?: any;
showArrow?: boolean;
showSearch?: boolean;
size?: string;
tokenSeparators?: any;
value?: any;
onBlur?: any;
onChange?: any;
onDeselect?: any;
onFocus?: any;
onInputKeyDown?: any;
onMouseEnter?: any;
onMouseLeave?: any;
onPopupScroll?: any;
onSearch?: any;
onSelect?: any;
open?: boolean;
onDropdownVisibleChange?: any;
}
export const Select: React.Component<SelectProps>;
}