Files
rclone-ui/types/jobs.d.ts
T
2026-02-03 00:37:52 +07:00

15 lines
288 B
TypeScript

export type JobItem = {
id: number
type: 'active' | 'inactive'
bytes: number
totalBytes: number
speed: number
done: boolean
progress: number
hasError: boolean
sources: string[]
isChecking: boolean
checkingCount: number
isDryRun?: boolean
}