contract-scraper
Version:
A customisable data scraper for the web based on JSON contracts
10 lines (9 loc) • 350 B
TypeScript
import Fetcher from './fetcher';
import { ScrapedPage } from '../fetcher/fetcher';
export default class RequestFetcher implements Fetcher {
private url;
constructor(url: any);
getPage(): Promise<ScrapedPage>;
getRequestLibrary(): import("axios").AxiosStatic;
getPageResponse(): Promise<import("axios").AxiosResponse<any, any>>;
}