Interface AddTorrentResponse

interface AddTorrentResponse {
    result: string;
    arguments: {
        torrent-added: {
            id: number;
            hashString: string;
            name: string;
        };
    };
}

Hierarchy (view full)

Properties

Properties

result: string
arguments: {
    torrent-added: {
        id: number;
        hashString: string;
        name: string;
    };
}

Type declaration

  • torrent-added: {
        id: number;
        hashString: string;
        name: string;
    }
    • id: number
    • hashString: string
    • name: string