@jbrowse/plugin-linear-genome-view
Version:
JBrowse 2 linear genome view
9 lines (8 loc) • 319 B
TypeScript
import type { LinearGenomeViewModel } from '../model.ts';
import type { HighlightType } from '../types.ts';
type LGV = LinearGenomeViewModel;
declare const Highlight: ({ model, highlight, }: {
model: LGV;
highlight: HighlightType;
}) => import("react/jsx-runtime").JSX.Element | null;
export default Highlight;