andrade-soulseek-downloader
Version:
Simple, safe Soulseek download library with built-in rate limiting to prevent bans
20 lines • 587 B
TypeScript
/**
* Configuration for search operation.
*/
export interface SearchOptions {
/** Artist name to search */
artist: string;
/** Track title to search */
title: string;
/** Minimum bitrate in kbps */
minBitrate?: number;
/** Maximum bitrate in kbps (optional, no limit if not specified) */
maxBitrate?: number;
/** Search timeout in milliseconds */
timeout?: number;
/** Maximum number of results */
maxResults?: number;
/** Whether to use strict matching */
strictMatching?: boolean;
}
//# sourceMappingURL=search-options.d.ts.map