I don't know how to fix the typescript error: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type '{}'
I am a javascript developer and I am trying to write typescript. I understand the philosophy of typescript where you have to actually declare the types of variables. Instead of a function being doThis(param1) {…, you would write doThis(param1: string) {… I have this AWS lambda code that DOES work properly. The file is called… Read More I don't know how to fix the typescript error: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type '{}'