bandcamp-fetch
Version:
Scrape Bandcamp content
11 lines • 400 B
TypeScript
import { type ImageFormat } from '../types/Image.js';
import { type LabelArtist } from '../types/Label.js';
interface LabelArtistsParseOptions {
labelUrl: string;
imageFormat: ImageFormat | null;
}
export default class LabelArtistsParser {
static parseLabelArtists(html: string, opts: LabelArtistsParseOptions): LabelArtist[];
}
export {};
//# sourceMappingURL=LabelArtistsParser.d.ts.map