Interface FlowJob

interface FlowJob {
    children?: FlowJob[];
    data?: any;
    name: string;
    opts?: Omit<JobsOptions, "repeat" | "parent">;
    prefix?: string;
    queueName: string;
}

Properties

children?: FlowJob[]
data?: any
name: string
opts?: Omit<JobsOptions, "repeat" | "parent">
prefix?: string
queueName: string

Generated using TypeDoc