bandcamp-fetch
Version:
Scrape Bandcamp content
12 lines • 412 B
TypeScript
import type Artist from '../types/Artist.js';
import { type ImageFormat } from '../types/Image.js';
import type Label from '../types/Label.js';
interface BandInfoParseOptions {
bandUrl: string;
imageFormat: ImageFormat | null;
}
export default class BandInfoParser {
static parseInfo(html: string, opts: BandInfoParseOptions): Artist | Label;
}
export {};
//# sourceMappingURL=BandInfoParser.d.ts.map