UNPKG

transmission-rpc-client

Version:
15 lines (14 loc) 578 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SetTorrentLocationRequest = void 0; const AbstractRequest_1 = require("../AbstractRequest"); const TorrentMethods_1 = require("./TorrentMethods"); class SetTorrentLocationRequest extends AbstractRequest_1.AbstractRequest { constructor(args, tag) { super(args, TorrentMethods_1.TorrentMethods.TORRENT_SET_LOCATION, tag); } static of(args, tag) { return new SetTorrentLocationRequest(args, tag); } } exports.SetTorrentLocationRequest = SetTorrentLocationRequest;