UNPKG

@kfijolek/boardgamegeekclient

Version:

TypeScript client to interact with BoardGameGeek public XML API

9 lines (8 loc) 310 B
import { IFetcher } from '../interface'; export declare class TextFetcher implements IFetcher<string, string> { apiKey: string; constructor(apiKey: string); doFetch(query: string): Promise<string>; internalFetch(query: string): Promise<any>; delay(waitFor: number): Promise<any>; }