mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-05-06 14:23:30 -04:00
13 lines
254 B
TypeScript
13 lines
254 B
TypeScript
import type { JobStatus } from './JobStatus';
|
|
|
|
export interface JobReport {
|
|
id: string;
|
|
date_created: string;
|
|
date_modified: string;
|
|
status: JobStatus;
|
|
task_count: number;
|
|
completed_task_count: number;
|
|
message: string;
|
|
seconds_elapsed: string;
|
|
}
|