mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-06-11 23:35:43 -04:00
10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
/**
|
|
* Download client type enum matching backend DownloadClientType
|
|
*/
|
|
export enum DownloadClientType {
|
|
QBittorrent = 0,
|
|
Deluge = 1,
|
|
Transmission = 2,
|
|
Usenet = 3,
|
|
}
|