UNPKG

@kfijolek/boardgamegeekclient

Version:

Javascript client to interact with BoardGameGeek public XML API

7 lines (6 loc) 255 B
import { IFetcher } from "../interface"; export declare class TextFetcher implements IFetcher<string, string> { doFetch(query: string): Promise<string>; internalFetch(query: string): Promise<any>; delay(waitFor: number): Promise<any>; }