mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-27 23:06:29 -04:00
c62fc9d05b
Closes #7400
15 lines
322 B
TypeScript
15 lines
322 B
TypeScript
import Provider from './Provider';
|
|
|
|
export type Protocol = 'torrent' | 'usenet' | 'unknown';
|
|
|
|
interface DownloadClient extends Provider {
|
|
enable: boolean;
|
|
protocol: Protocol;
|
|
priority: number;
|
|
removeCompletedDownloads: boolean;
|
|
removeFailedDownloads: boolean;
|
|
tags: number[];
|
|
}
|
|
|
|
export default DownloadClient;
|