import { BaseParser, IMangaInfo, IMangaChapterPage } from '.'; declare abstract class MangaParser extends BaseParser { /** * takes manga id * * returns manga info with chapters */ abstract fetchMangaInfo(mangaId: string, ...args: any): Promise; /** * takes chapter id * * returns chapter (image links) */ abstract fetchChapterPages(chapterId: string, ...args: any): Promise; } export default MangaParser;