UNPKG

@jbrowse/plugin-config

Version:

JBrowse 2 config utilities

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