@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
13 lines (12 loc) • 510 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const configuration_1 = require("../configuration");
function x() { }
const BaseRpcDriverConfigSchema = (0, configuration_1.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 });
exports.default = BaseRpcDriverConfigSchema;