recoder-code
Version:
Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities
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;