github.com/grafana/pyroscope@v1.18.0/public/app/components/TimelineChart/ContextMenu.plugin.ts (about)

     1  export interface ContextMenuProps {
     2    click: {
     3      /** The X position in the window where the click originated */
     4      pageX: number;
     5      /** The Y position in the window where the click originated */
     6      pageY: number;
     7    };
     8    timestamp: number;
     9    containerEl: HTMLElement;
    10  }