noImplicitAny: Fix basic errors (#17668)

* Fix basic noImplicitAny errors

* noImplicitAny HeatmapCtrl

* Update error limit
This commit is contained in:
Tobias Skarhed
2019-06-19 19:59:03 +02:00
committed by Torkel Ödegaard
parent 433e5ac049
commit c9ad411d8e
15 changed files with 75 additions and 53 deletions

View File

@@ -22,12 +22,12 @@ const global = window as any;
global.$ = global.jQuery = $;
const localStorageMock = (() => {
let store = {};
let store: any = {};
return {
getItem: (key: string) => {
return store[key];
},
setItem: (key: string, value) => {
setItem: (key: string, value: any) => {
store[key] = value.toString();
},
clear: () => {