interface Fetcher {
    fetch(url: string): Promise<{ $: CheerioAPI; fullUrl: string }>;
    fetchRoot(): Promise<{ $: CheerioAPI; fullUrl: string }>;
}

Implemented by

Methods

  • Parameters

    • url: string

    Returns Promise<{ $: CheerioAPI; fullUrl: string }>

  • Returns Promise<{ $: CheerioAPI; fullUrl: string }>