bandcamp-fetch
Version:
Scrape Bandcamp content
12 lines • 372 B
TypeScript
import { type ImageFormat } from '../types/Image.js';
import type Show from '../types/Show.js';
interface ShowListParseOptions {
imageBaseUrl: string;
imageFormat: ImageFormat | null;
}
export default class ShowListParser {
#private;
static parseList(json: any, opts: ShowListParseOptions): Show[];
}
export {};
//# sourceMappingURL=ShowListParser.d.ts.map