bandcamp-fetch
Version:
Scrape Bandcamp content
15 lines • 470 B
TypeScript
import { type ImageFormat } from '../types/Image.js';
import type Show from '../types/Show.js';
interface ShowParseOptions {
showUrl: string;
imageBaseUrl: string;
albumImageFormat?: ImageFormat | null;
artistImageFormat?: ImageFormat | null;
showImageFormat?: ImageFormat | null;
}
export default class ShowParser {
#private;
static parseShow(html: string, opts: ShowParseOptions): Show;
}
export {};
//# sourceMappingURL=ShowParser.d.ts.map