UNPKG

bandcamp-fetch

Version:
10 lines 366 B
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