recoder-code
Version:
🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!
12 lines (11 loc) • 318 B
TypeScript
/**
* Queue management for Plugin Registry Service
*/
import Bull from 'bull';
export interface QueueManager {
packageAnalysis: Bull.Queue;
securityScan: Bull.Queue;
downloadStats: Bull.Queue;
}
export declare function initializeQueues(): QueueManager;
export declare function getQueues(): QueueManager;