battlemetrics-client
Version:
TypeScript client library for the BattleMetrics API
19 lines • 517 B
TypeScript
import { PageParams } from "./commonParams";
import { GameAttributes } from "./games";
/**
* Query parameters for listing games from BattleMetrics.
*/
export interface GameListParams {
fields: {
/**
* Request only specific attributes of the game be returned.
* Example: "name"
*/
game: keyof GameAttributes | (keyof GameAttributes)[];
};
/**
* Params for paginating the result set.
*/
page: PageParams;
}
//# sourceMappingURL=gamesParams.d.ts.map