@jbrowse/plugin-config
Version:
JBrowse 2 config utilities
14 lines (13 loc) • 520 B
TypeScript
declare const StringArrayMapEditor: ({ slot, }: {
slot: {
name: string;
value: Map<string, string[]>;
remove: (key: string) => void;
add: (key: string, val: string[]) => void;
description: string;
setAtKeyIndex: (key: string, idx: number, val: string) => void;
removeAtKeyIndex: (key: string, idx: number) => void;
addToKey: (key: string, val: string) => void;
};
}) => import("react/jsx-runtime").JSX.Element;
export default StringArrayMapEditor;