I\'m trying to iterate over a typescript map but I keep getting errors and I could not find any solution yet for such a trivial problem.
My code is:
On Typescript 3.5 and Angular 8 LTS, it was required to cast the type as follows:
for (let [k, v] of Object.entries(someMap)) { console.log(k, v) }