can’t innovate my ass Signed-off-by: FTCHD <144691102+FTCHD@users.noreply.github.com>
9 lines
235 B
TypeScript
9 lines
235 B
TypeScript
import type { FlagValue } from './rclone'
|
|
|
|
export interface Template {
|
|
id: string
|
|
name: string
|
|
tags: ('copy' | 'sync' | 'move' | 'delete' | 'purge' | 'serve' | 'mount' | 'bisync')[]
|
|
options: Record<string, FlagValue>
|
|
}
|