Files
rclone-ui/types/rclone.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

29 lines
601 B
TypeScript

export interface BackendOption {
Name: string
FieldName: string
Help: string
Provider?: string
Default: any
Value: any
Examples?: Array<{ Value: string; Help: string }>
Hide: number
Required: boolean
IsPassword: boolean
NoPrefix: boolean
Advanced: boolean
Exclusive: boolean
Sensitive: boolean
DefaultStr: string
ValueStr: string
Type: string
}
export interface Backend {
Name: string
Description: string
Options: BackendOption[]
Prefix: string
}
export type FlagValue = string | number | boolean | string[] | null