UNPKG

@jbrowse/plugin-wiggle

Version:

JBrowse 2 wiggle adapters, tracks, etc.

17 lines (16 loc) 546 B
import type { TooltipContentsComponent } from '../../Tooltip.tsx'; import type { Source } from '../../util.ts'; import type { Feature } from '@jbrowse/core/util'; type Coord = [number, number]; declare const WiggleTooltip: (props: { model: { featureUnderMouse: Feature; sources: Source[]; rowHeight: number; }; height: number; offsetMouseCoord: Coord; clientMouseCoord: Coord; TooltipContents?: TooltipContentsComponent; }) => import("react/jsx-runtime").JSX.Element; export default WiggleTooltip;