Files
rclone-ui/types/task.d.ts
T
2025-08-13 00:08:42 +02:00

13 lines
276 B
TypeScript

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