UNPKG

supercell-api-scraper

Version:

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

18 lines (16 loc) 253 B
/** * Interface for the fetch API. */ export interface Options { tag?: string; domain?: string; subdomain?: string; id?: string; } /** * Interface for the request of the API. */ export interface Request { url?: string; key?: unknown; }