@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
12 lines (11 loc) • 435 B
TypeScript
import RpcMethodType from '../../pluggableElementTypes/RpcMethodType';
import type { RenderArgs, RenderArgsSerialized } from './util';
export default class CoreGetFeatureDetails extends RpcMethodType {
name: string;
serializeArguments(args: RenderArgs, rpcDriver: string): Promise<any>;
execute(args: RenderArgsSerialized & {
stopToken?: string;
}, rpcDriver: string): Promise<{
feature: any;
}>;
}