mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-22 16:32:09 -04:00
3 lines
245 B
TypeScript
3 lines
245 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, } |