export = Doujin; export class Doujin { /** * Doujin * @param {string} html HTML * @param {string} url * @param {number} statusCode */ constructor(html: string, url: string, statusCode: number); readonly statusCode: number; readonly name: string; readonly rating: string; readonly totalVotes: string; readonly rank: string; readonly montlyViews: string; readonly status: string; readonly releaseYear: string; readonly genres: string[]; readonly url: string; readonly img: string; /** * **Returns a first chapter** * @returns {Promise} */ getFirstChapter(): Promise; /** * **Returns a last chapter** * @returns {Promise} */ getLastChapter(): Promise; /** * **Returns an all chapters** * @returns {Promise} */ getAllChapters(): Promise; #private; }