bandcamp-fetch
Version:
Scrape Bandcamp content
10 lines • 366 B
TypeScript
import { type ArticleList } from '../types/Article.js';
import { type ImageFormat } from '../types/Image.js';
interface ArticleListParseOptions {
imageFormat: ImageFormat | null;
}
export default class ArticleListParser {
static parseList(html: string, opts: ArticleListParseOptions): ArticleList;
}
export {};
//# sourceMappingURL=ArticleListParser.d.ts.map