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