comic-book-dl
Version:
10 lines (9 loc) • 530 B
TypeScript
import { Base } from '../../../lib/parse/base';
import type { BookInfo, TSaveImgCallback } from '../../../lib/parse/base';
export declare class Ikuku extends Base {
readonly type = "Ikuku";
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>;
}