diff --git a/types/bull/index.d.ts b/types/bull/index.d.ts index 2419afee8f..aa1ae89273 100644 --- a/types/bull/index.d.ts +++ b/types/bull/index.d.ts @@ -128,6 +128,25 @@ declare namespace Bull { * When this job was completed (unix milliseconds) */ finishedOn?: number; + + /** + * Which queue this job was part of + */ + queue: Queue; + + timestamp: number; + + /** + * The named processor name + */ + name: string; + + /** + * The stacktrace for any errors + */ + stacktrace: string[]; + + returnvalue: any; /** * Report progress on a job