andrade-soulseek-downloader
Version:
Simple, safe Soulseek download library with built-in rate limiting to prevent bans
20 lines • 562 B
TypeScript
/**
* Search result from Soulseek network.
*/
export interface SoulseekSearchResult {
/** Username of file owner */
user: string;
/** Full file path on remote system */
file: string;
/** File size in bytes */
size: number;
/** Audio bitrate in kbps */
bitrate: number;
/** Upload speed in bytes/second */
speed: number;
/** Whether user has available slots */
slots: boolean;
/** Similarity score for search match */
discoseekMatchingScore?: number;
}
//# sourceMappingURL=soulseek-search-result.d.ts.map