UNPKG

comic-book-dl

Version:
15 lines (14 loc) 531 B
import { Base } from '../../../lib/parse/base'; import type { BookInfo, TSaveImgCallback } from '../../../lib/parse/base'; export declare class Baimangu extends Base { readonly type = "Baimangu"; parseBookInfo(): Promise<false | BookInfo>; getImgList(chapterUrl: string): Promise<string[]>; genReqOptions(): { headers: { referrer: string; 'user-agent': any; }; }; saveImgList(path: string, imgList: string[], saveImgCallback?: TSaveImgCallback): Promise<string[]>; }