UNPKG

bandcamp-fetch

Version:
13 lines 461 B
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