it-tools/src/tools/torrent-to-magnet/parse-torrent.d.ts
2024-07-21 23:36:27 +02:00

4 lines
191 B
TypeScript

declare module 'parse-torrent'{
export default function parseTorrent(content: string | ArrayBufferView): Promise<object>;
export function toMagnetURI(parsedTorrent: object): string;
}