Interface Torrent

This interface represents a torrent, including its name, and optional URL and magnet link.

interface Torrent {
    name: string;
    url?: string;
    magnet?: string;
}

Properties

Properties

name: string

The name of the torrent

url?: string

An optional URL for the torrent

magnet?: string

An optional magnet link for the torrent