UNPKG

bullmq

Version:

Queue for messages and jobs based on Redis

11 lines (10 loc) 288 B
export type KeysMap = { [index in string]: string; }; export declare class QueueKeys { readonly prefix: string; constructor(prefix?: string); getKeys(name: string): KeysMap; toKey(name: string, type: string): string; getQueueQualifiedName(name: string): string; }