You could use Map.prototype.forEach((value, key, map) => void, thisArg?) : void instead
Use it like this:
myMap.forEach((value: boolean, key: string) => {
console.log(key, value);
});
You could use Map.prototype.forEach((value, key, map) => void, thisArg?) : void instead
Use it like this:
myMap.forEach((value: boolean, key: string) => {
console.log(key, value);
});