mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 09:01:45 +08:00
removing implicit any
This commit is contained in:
0
react-select/react-select-tests.ts
Normal file
0
react-select/react-select-tests.ts
Normal file
10
react-select/react-select.d.ts
vendored
10
react-select/react-select.d.ts
vendored
@@ -43,11 +43,11 @@ declare module "react-select" {
|
||||
name? : string;
|
||||
newOptionCreator? : ()=>Option;
|
||||
noResultsText? : string;
|
||||
onBlur? : (event)=>void;
|
||||
onChange? : (newValue)=>void;
|
||||
onFocus? : (event)=>void;
|
||||
onInputChange? : (inputValue)=>void;
|
||||
onOptionLabelClick? : (value, event)=>void;
|
||||
onBlur? : (event : Event)=>void;
|
||||
onChange? : (newValue : string)=>void;
|
||||
onFocus? : (event : Event)=>void;
|
||||
onInputChange? : (inputValue : string)=>void;
|
||||
onOptionLabelClick? : (value : string, event : Event)=>void;
|
||||
optionRenderer? : ()=>void;
|
||||
options? : Array<Option>;
|
||||
placeholder? : string;
|
||||
|
||||
Reference in New Issue
Block a user