Type alias StartTorrentsConfig

StartTorrentsConfig: {
    ids?: TorrentId;
    now?: boolean;
}

The configuration options for starting one or more torrents

You can pass a single ID or an array of IDs to remove multiple torrents. If no IDs are passed, all torrents will be started.

Optionally, you can set the now option to true to start the torrents immediately.

Type declaration

  • Optional ids?: TorrentId

    The ID or IDs of the torrents to remove

    Example

    1
    

    Example

    
    
  • Optional now?: boolean

    Whether or not to start the torrents immediately

    Default

    false
    

Generated using TypeDoc