import { IJobBase } from './IJobBase'; /** Represents a job. */ export interface IJob extends IJobBase { /** Gets or sets the parameters of the job. */ parameters?: TParams; /** Gets or sets the result of the job. */ result?: TResult; }