Remove or exempt all uses of 'any

* Refactored LocalForage
* Refactored SceneFilenameParser
This commit is contained in:
Infinite
2020-02-13 19:54:37 +01:00
parent a60c89ceb1
commit cdadb66d85
43 changed files with 671 additions and 677 deletions

View File

@@ -265,7 +265,7 @@ export const SceneSelectedOptions: React.FC<IListOperationProps> = (
<Form.Control
as="select"
value={rating}
onChange={(event: any) => setRating(event.target.value)}
onChange={(event: React.FormEvent<HTMLSelectElement>) => setRating(event.currentTarget.value)}
>
{["", "1", "2", "3", "4", "5"].map(opt => (
<option key={opt} value={opt}>