comic-book-dl
Version:
17 lines (16 loc) • 682 B
TypeScript
import { Base } from '../../../lib/parse/base';
import type { BookInfo, TSaveImgCallback } from '../../../lib/parse/base';
export declare class Godamanga extends Base {
readonly type = "Godamanga";
parseBookInfo(): Promise<BookInfo | false>;
getImgList(chapterUrl: string): Promise<string[]>;
saveImgList(path: string, imgList: string[], saveImgCallback?: TSaveImgCallback): Promise<string[]>;
saveImg(path: string, imgUrl: string, fixFileName?: string | undefined, fixSuffix?: string | undefined): Promise<string>;
genReqOptions(): {
headers: {
'user-agent': any;
referer: string;
};
http2: boolean;
};
}