Interface TorrentList

interface TorrentList {
    connected: boolean;
    filters: TorrentFilters;
    stats: Stats;
    torrents: Record<string, Torrent>;
}

Properties

connected: boolean
stats: Stats
torrents: Record<string, Torrent>