/** * The Job Worker interface. * @category Job */ export interface IJobWorker { /** * Close the Job Worker. */ close(): void; }