Interface FlowJobBase<T>

interface FlowJobBase<T> {
    children?: FlowChildJob[];
    data?: any;
    name: string;
    opts?: Omit<T, "repeat">;
    prefix?: string;
    queueName: string;
}

Type Parameters

  • T

Properties

children?: FlowChildJob[]
data?: any
name: string
opts?: Omit<T, "repeat">
prefix?: string
queueName: string

Generated using TypeDoc