property 'foreach' does not exist on type code example
Example: Property 'forEach' does not exist on type 'NodeListOf'.
const frameZones = Array.from(document.querySelectorAll('path.frame-zone'));
frameZones.forEach((...) => {});
const frameZones = Array.from(document.querySelectorAll('path.frame-zone'));
frameZones.forEach((...) => {});