UNPKG

supercell-api-scraper

Version:

A supercell games scraper that has additional calculations and info, easy to use methods. [BETA]

10 lines (9 loc) 356 B
import Client from '../client/client.js'; import { FetchOptions } from '../types/interfaces.js'; import { Game, GameDomains } from '../types/types.js'; export default class BaseGame { readonly client: Client; constructor(client: Client); fetch(game: Game, domain: GameDomains, options?: FetchOptions): Promise<any>; private static token; }