@jbrowse/plugin-linear-genome-view
Version:
JBrowse 2 linear genome view
15 lines (14 loc) • 578 B
TypeScript
import type { BaseBlock } from '@jbrowse/core/util/blockTypes';
declare const ContentBlock: ({ block, children, }: {
block: BaseBlock;
children: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element;
declare function ElidedBlock({ width }: {
width: number;
}): import("react/jsx-runtime").JSX.Element;
declare function InterRegionPaddingBlock({ boundary, width, style, }: {
boundary: boolean;
width: number;
style?: React.CSSProperties;
}): import("react/jsx-runtime").JSX.Element;
export { ContentBlock, ElidedBlock, InterRegionPaddingBlock };