UNPKG

@jbrowse/plugin-wiggle

Version:

JBrowse 2 wiggle adapters, tracks, etc.

17 lines (16 loc) 594 B
import type { Feature } from '@jbrowse/core/util'; type Coord = [number, number]; export type TooltipContentsComponent = React.ForwardRefExoticComponent<{ feature: Feature; model: any; } & React.RefAttributes<HTMLDivElement>>; declare const Tooltip: ({ model, height, clientMouseCoord, offsetMouseCoord, TooltipContents, }: { model: { featureUnderMouse?: Feature; }; height: number; clientMouseCoord: Coord; offsetMouseCoord: Coord; TooltipContents: TooltipContentsComponent; }) => import("react/jsx-runtime").JSX.Element | null; export default Tooltip;