@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
11 lines (10 loc) • 421 B
JavaScript
import { ConfigurationSchema } from "../configuration/index.js";
function x() { }
const BaseRpcDriverConfigSchema = ConfigurationSchema('BaseRpcDriver', {
workerCount: {
type: 'number',
description: 'The number of workers to use. If 0 (the default) JBrowse will decide how many workers to use.',
defaultValue: 0,
},
}, { explicitlyTyped: true });
export default BaseRpcDriverConfigSchema;