Interface Parent<T>

Describes the parent for a Job.

interface Parent<T> {
    data?: T;
    name: string;
    opts?: JobsOptions;
    prefix?: string;
    queue?: string;
}

Type Parameters

  • T

Properties

data?: T
name: string
prefix?: string
queue?: string

Generated using TypeDoc