bandcamp-fetch
Version:
Scrape Bandcamp content
13 lines • 461 B
TypeScript
import { type ImageFormat } from '../types/Image.js';
import type Track from '../types/Track.js';
import type Album from '../types/Album.js';
interface DiscographyParseOptions {
imageBaseUrl: string;
bandUrl: string;
imageFormat: ImageFormat | null;
}
export default class DiscographyParser {
static parseDiscography(html: string, opts: DiscographyParseOptions): Array<Album | Track>;
}
export {};
//# sourceMappingURL=DiscographyParser.d.ts.map