UNPKG

bandcamp-fetch

Version:
11 lines 400 B
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