@jbrowse/plugin-wiggle
Version:
JBrowse 2 wiggle adapters, tracks, etc.
13 lines (12 loc) • 491 B
TypeScript
import type { MinimalModel } from './types.ts';
import type { Source } from '../../util.ts';
import type { getFillProps } from '@jbrowse/core/util';
declare const LegendItemText: ({ source, idx, rowHeight, model, exportSVG, textFillProps, }: {
source: Source;
idx: number;
rowHeight: number;
model: MinimalModel;
exportSVG?: boolean;
textFillProps: ReturnType<typeof getFillProps>;
}) => import("react/jsx-runtime").JSX.Element | null;
export default LegendItemText;