Files
rclone-ui/types/task.d.ts
T
2025-09-17 23:51:29 +02:00

13 lines
286 B
TypeScript

export interface ScheduledTask {
id: string
type: 'delete' | 'sync' | 'copy' | 'move' | 'purge'
cron: string
isRunning: boolean
isEnabled: boolean
currentRunId?: string
lastRun?: string
configId: string
args: Record<string, any>
error?: string
}