export = Utils; declare class Utils { /** * Get DOM tree from URL * @param {string} url * @param {object} [options] * @returns {Promise<{ * html: string, * status: number * }>} */ getPage(url: string, options?: object): Promise<{ html: string; status: number; }>; /** * Parse doujin from URL * @param {string} url * @returns {Promise} */ parseDoujinByURL(url: string): Promise; /** * Parcse all doujins from \\ elements * @param {cheerio.Cheerio} elements * @return {Promise>} */ parseAllURLsFromElements(elements: cheerio.Cheerio): Promise>; } import Doujin = require("./Doujin"); import cheerio = require("cheerio");