UNPKG

bandcamp-fetch

Version:
12 lines 411 B
import type Fan from '../types/Fan.js'; import { type ImageFormat } from '../types/Image.js'; interface FanInfoParseOptions { imageBaseUrl: string; imageFormat: ImageFormat | null; } export default class FanInfoParser { static parseInfo(html: string, opts: FanInfoParseOptions): Fan; static parseLoggedInFanUsername(html: string): string; } export {}; //# sourceMappingURL=FanInfoParser.d.ts.map