faceit-node-api
Version:
Lightweight node.js module for easier use of the Faceit Data API.
22 lines (16 loc) • 475 B
text/typescript
import Faceit from '../Faceit.js';
import { QueryParams } from '@interfaces';
export default class Games extends Faceit {
constructor() {
super('games');
}
getAllDetailsOnAllGames(queryparams: QueryParams) {
return this.processRequest(null, queryparams);
}
getGameDetails(game_id: string) {
return this.processRequest(`/${game_id}`);
}
getAllDetailsOfTheParentGame(game_id: string) {
return this.processRequest(`/${game_id}/parent`);
}
}