UNPKG

@jbrowse/plugin-linear-genome-view

Version:

JBrowse 2 linear genome view

22 lines (21 loc) 661 B
import type { LinearGenomeViewModel } from '..'; import type { AnyConfigurationModel } from '@jbrowse/core/configuration'; type LGV = LinearGenomeViewModel; interface DisplayResult { track: { configuration: AnyConfigurationModel; displays: { height: number; }[]; }; result: string; } export default function SVGTracks({ displayResults, model, textHeight, fontSize, trackLabels, trackLabelOffset, }: { displayResults: DisplayResult[]; model: LGV; textHeight: number; fontSize: number; trackLabels?: string; trackLabelOffset?: number; }): import("react/jsx-runtime").JSX.Element; export {};