JimmyLaurent / torrent-search-api

Yet another node torrent scraper (supports iptorrents, torrentleech, torrent9, torrentz2, 1337x, thepiratebay, Yggtorrent, TorrentProject, Eztv, Yts, LimeTorrents)
MIT License
395 stars 99 forks source link

index.d.ts fix on the search function #135

Open brandongallagher1999 opened 3 years ago

brandongallagher1999 commented 3 years ago

The index.d.ts file generated by TypeScript unfortunately failed to recognize category and limit as optional parameters.

export function search(
    query: string,
    category?: string,
    limit?: number
): Promise<Torrent[]>;