feat(kue): add missing workerId and _error to kue Job, fix #28760 (#28762)

* feat(kue): add missing workerId and _error to kue Job, fix #28760

* use private for _error
This commit is contained in:
Sibelius Seraphini
2018-09-14 13:05:35 -03:00
committed by Ryan Cavanaugh
parent 1695c608fd
commit 69768dc0c3

View File

@@ -78,6 +78,8 @@ export declare class Job extends events.EventEmitter {
public failed_at: string | number;
public started_at: string | number;
public client: redisClientFactory.RedisClient;
public workerId: string;
private _error: string;
private _max_attempts;
static priorities: Priorities;