@overture-stack/lyric
Version:
Data Submission system
9 lines (8 loc) • 390 B
TypeScript
import type { AppConfig } from '../config/config.js';
import type { WorkerFunctions } from './types.js';
/**
* Factory function to create a worker pool with the given configuration.
* @param configData The application configuration
* @returns The worker functions to execute tasks in the worker pool
*/
export declare const createWorkerPool: (configData: AppConfig) => WorkerFunctions;