UNPKG

@jbrowse/core

Version:

JBrowse 2 core libraries used by plugins

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