UNPKG

@jbrowse/core

Version:

JBrowse 2 core libraries used by plugins

11 lines (10 loc) 435 B
import type { SimpleFeatureSerialized } from '../../util'; import type { IAnyStateTreeNode } from 'mobx-state-tree'; export default function FeatureDetails(props: { model: IAnyStateTreeNode; feature: SimpleFeatureSerialized; depth?: number; omit?: string[]; descriptions?: Record<string, React.ReactNode>; formatter?: (val: unknown, key: string) => React.ReactNode; }): import("react/jsx-runtime").JSX.Element;