@jbrowse/plugin-linear-genome-view
Version:
JBrowse 2 linear genome view
17 lines (16 loc) • 741 B
TypeScript
import BaseResult from '@jbrowse/core/TextSearch/BaseResults';
import type { LinearGenomeViewModel } from '../../model';
import type { TextFieldProps as TFP } from '@mui/material';
declare const RefNameAutocomplete: ({ model, onSelect, assemblyName, style, fetchResults, onChange, value, minWidth, maxWidth, TextFieldProps, }: {
model: LinearGenomeViewModel;
onSelect?: (region: BaseResult) => void;
onChange?: (val: string) => void;
assemblyName?: string;
value?: string;
fetchResults: (query: string) => Promise<BaseResult[]>;
style?: React.CSSProperties;
minWidth?: number;
maxWidth?: number;
TextFieldProps?: TFP;
}) => import("react/jsx-runtime").JSX.Element;
export default RefNameAutocomplete;