bandcamp-fetch
Version:
Scrape Bandcamp content
14 lines • 560 B
TypeScript
import { type ImageFormat } from '../types/Image.js';
import { type SearchResultAny, type SearchResults } from '../types/Search.js';
import { SearchItemType } from './SearchAPI.js';
interface SearchResultsParseOptions {
itemType: SearchItemType;
albumImageFormat: ImageFormat | null;
artistImageFormat: ImageFormat | null;
}
export default class SearchResultsParser {
#private;
static parseResults(html: string, opts: SearchResultsParseOptions): SearchResults<SearchResultAny>;
}
export {};
//# sourceMappingURL=SearchResultsParser.d.ts.map