UNPKG

faceit-node-api

Version:

Lightweight node.js module for easier use of the Faceit Data API.

9 lines (8 loc) 418 B
import Faceit from '../Faceit.js'; import { QueryParams } from '@interfaces'; export default class Games extends Faceit { constructor(); getAllDetailsOnAllGames(queryparams: QueryParams): Promise<import("@interfaces").ApiResponse>; getGameDetails(game_id: string): Promise<import("@interfaces").ApiResponse>; getAllDetailsOfTheParentGame(game_id: string): Promise<import("@interfaces").ApiResponse>; }