UNPKG

@jbrowse/core

Version:

JBrowse 2 core libraries used by plugins

12 lines (11 loc) 460 B
import type { SimpleFeatureSerialized } from '../../util'; import type { Descriptors } from '../types'; import type { IAnyStateTreeNode } from '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;