open-critic-node
Version:
A NodeJS Wrapper for the Open Critic API
12 lines • 605 B
TypeScript
import { IGameSummary } from "../interfaces";
import { IGetGamesOptions } from "../interfaces/get-games-options.interface";
import { IGameDetails } from "../interfaces/game-details.interface";
export declare class CriticAPIHelper {
private static readonly GATEWAY_API_URL;
private static readonly CONSTANT_PAGE_SIZE;
static getAllGamesWithOptions(getOptions: IGetGamesOptions): Promise<Array<IGameSummary>>;
static getGameById(id: number): Promise<IGameDetails>;
private static _getRequest;
private static _getPlatformsQueryString;
}
//# sourceMappingURL=critic-api.helper.d.ts.map