@ctrl/deluge
    Preparing search index...

    Interface TorrentInfo

    interface TorrentInfo {
        error: string;
        id: number;
        result: {
            files_tree: {
                contents: Record<string, TorrentContentDir | TorrentContentFile>;
            };
            info_hash: string;
            name: string;
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    error: string
    id: number

    mostly usless id that increments with every request

    result: {
        files_tree: {
            contents: Record<string, TorrentContentDir | TorrentContentFile>;
        };
        info_hash: string;
        name: string;
    }