removing implicit any

This commit is contained in:
Hugo ESQUIBET
2015-12-19 18:55:42 +01:00
parent 9c75894f26
commit cb795efdf7
2 changed files with 5 additions and 5 deletions

View File

View File

@@ -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;