blob: f6f711c39e6c1ca87e31fe0a04fd250f86028a3f [file] [log] [blame]
86133a611b012025-06-07 22:11:57 +08001/** Peer 信息 */
2export interface BtTorrentPeer {
3 /** Peer Key */
4 peerKey: string;
5 /** IP 地址 */
6 ip: string;
7 /** 端口号 */
8 port: string;
9 /** 已上传量 */
10 uploaded: string;
11 /** 已下载量 */
12 downloaded: string;
13 /** 剩余量 */
14 left: string;
15 /** 最后活跃时间戳 */
16 lastSeen: string;
17}