torrent-to-pixeldrain
Version:
Allows you to download a torrent and upload it to pixeldrain.com
7 lines (6 loc) • 333 B
TypeScript
import { DownloadedTorrent } from "../interfaces/downloadedtorrent";
import { Uploadable } from "../interfaces/uploadable";
import { PixeldrainService } from "../services/pixeldrainservice";
export declare class TorrentToUplodable {
static convert(torrent: DownloadedTorrent, pixeldrainService: PixeldrainService): Uploadable;
}