bandcamp-fetch
Version:
Scrape Bandcamp content
15 lines • 480 B
TypeScript
import { type ImageFormat } from '../types/Image.js';
import type Track from '../types/Track.js';
interface TrackInfoParseOptions {
trackUrl?: string;
imageBaseUrl: string;
albumImageFormat: ImageFormat | null;
artistImageFormat: ImageFormat | null;
includeRawData: boolean;
}
export default class TrackInfoParser {
#private;
static parseInfo(html: string, opts: TrackInfoParseOptions): Track;
}
export {};
//# sourceMappingURL=TrackInfoParser.d.ts.map