You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/frontend/src/typings/DownloadClient.ts

15 lines
322 B

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;