import { IMangaShortDetails } from '../Types'; import { IMangaResponse } from '../Types'; export declare class Manga implements IMangaShortDetails { name: string; id: string; author: string; views: number; lastUpdated: string; thumbnail: string; url: string; constructor(name: string, id: string, author: string, views: number, lastUpdated: string, thumbnail: string, url: string); /** * Gets the info the manga * @returns {Promise} */ getInfo(): Promise; }