import { HttpClient } from '@angular/common/http'; import { Game } from '../models/game'; import { ConfigService } from '../services/config.service'; import { GameBaseApi } from './game-base-api'; import { WrestballGameTeamStatistic } from '../models/wrestball-game-team-statistic'; import { WrestballGameStatistic } from '../models/wrestball-game-statistic'; import { WrestballGameLog } from '../models/wrestball-game-log'; export declare class WrestballGameApi extends GameBaseApi { protected httpClient: HttpClient; protected configService: ConfigService; constructor(httpClient: HttpClient, configService: ConfigService); getById(gameId: number): Promise; getTeamStatistic(gameId: number): Promise; getUserStatistic(gameId: number): Promise; getLogs(gameId: number): Promise; }