@jbrowse/plugin-linear-genome-view
Version:
JBrowse 2 linear genome view
11 lines (10 loc) • 351 B
TypeScript
import type React from 'react';
import type { LinearGenomeViewModel } from '..';
type LGV = LinearGenomeViewModel;
interface ScalebarProps {
model: LGV;
style?: React.CSSProperties;
className?: string;
}
declare const Scalebar: React.ForwardRefExoticComponent<ScalebarProps & React.RefAttributes<HTMLDivElement>>;
export default Scalebar;