UNPKG

@jbrowse/core

Version:

JBrowse 2 core libraries used by plugins

14 lines (13 loc) 425 B
import type { SimpleFeatureSerialized } from '../../util/index.ts'; import type { ErrorState, SeqState } from '../util.tsx'; export declare function useSequenceData({ feature, sequence, }: { feature: SimpleFeatureSerialized; sequence?: SeqState | ErrorState; }): { seq: string; upstream: string | undefined; downstream: string | undefined; cds: any[]; exons: any[]; utr: any[]; } | undefined;