@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
9 lines (8 loc) • 331 B
TypeScript
import type { FileLocation } from '../../util/types';
declare const UrlChooser: ({ location, label, style, setLocation, }: {
location?: FileLocation;
label?: string;
style?: Record<string, unknown>;
setLocation: (arg: FileLocation) => void;
}) => import("react/jsx-runtime").JSX.Element;
export default UrlChooser;