UNPKG

@jbrowse/plugin-config

Version:

JBrowse 2 config utilities

13 lines (12 loc) 461 B
import { AdapterType } from '@jbrowse/core/pluggableElementTypes'; import configSchema from "./configSchema.js"; export default function RefNameAliasAdapterF(pluginManager) { pluginManager.addAdapterType(() => new AdapterType({ name: 'RefNameAliasAdapter', configSchema, getAdapterClass: () => import("./RefNameAliasAdapter.js").then(r => r.default), adapterMetadata: { hiddenFromGUI: true, }, })); }