@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
16 lines (15 loc) • 406 B
TypeScript
export interface BaseOptions {
stopToken?: string;
bpPerPx?: number;
sessionId?: string;
statusCallback?: (message: string) => void;
headers?: Record<string, string>;
}
export type SearchType = 'full' | 'prefix' | 'exact';
export interface BaseTextSearchArgs {
queryString: string;
searchType?: SearchType;
stopToken?: string;
limit?: number;
pageNumber?: number;
}