import Base from "./base"; export default interface JobLog extends Base { /** The name of the job that ran. */ jobName: string; /** Messages the job sent while running. */ messages: { text: string; timestamp: Date; }[]; /** The error that occurred during the job, null if successful. */ err: { message: string; stack: string; }; /** The job's start time. */ startTime: Date; /** The job's end time. */ endTime: Date; }