UNPKG

bullmq

Version:

Queue for messages and jobs based on Redis

9 lines (8 loc) 204 B
import { ChildCommand } from '../enums/child-command'; import { JobJson } from './job-json'; export interface ParentMessage { cmd: ChildCommand; value?: any; err?: Error; job?: JobJson; }