Files
rclone-ui/types/jobs.d.ts
T
FTCHDandGitHub 7a62659323 v3
can’t innovate my ass 

Signed-off-by: FTCHD <144691102+FTCHD@users.noreply.github.com>
2025-12-07 18:42:44 +01:00

12 lines
215 B
TypeScript

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