import ChatExchangeError from "./ChatExchangeError"; /** * An error thrown during extracting elements from scraped pages */ export declare class ScrapingError extends ChatExchangeError { html: string; selector?: string | undefined; /** * Constructs an instance of ScrapingError * @param message error message * @param html scraped HTML string * @param selector optional selector if attempting to find an element */ constructor(message: string, html: string, selector?: string | undefined); } export default ScrapingError;