github.com/grafana/pyroscope@v1.18.0/public/app/lib/globals.tsx (about) 1 import jquery from 'jquery'; 2 3 interface Window { 4 jQuery?: unknown; 5 $?: unknown; 6 } 7 8 // Used by react-flot/flotjs 9 (window as Window).jQuery = jquery; 10 (window as Window).$ = jquery;