@jbrowse/plugin-wiggle
Version:
JBrowse 2 wiggle adapters, tracks, etc.
10 lines (9 loc) • 323 B
TypeScript
import type { axisPropsFromTickScale } from 'react-d3-axis-mod';
type Ticks = ReturnType<typeof axisPropsFromTickScale>;
declare const YScaleBar: ({ model, orientation, }: {
model: {
ticks?: Ticks;
};
orientation?: string;
}) => import("react/jsx-runtime").JSX.Element | null;
export default YScaleBar;