UNPKG

@gameye/sdk

Version:
14 lines (13 loc) 537 B
import * as models from "../models"; export declare type TeamItem = models.TeamModel; /** * Get a list of all teams in the statistic-state. * @param statisticState statistic state */ export declare function selectTeamList(statisticState: models.StatisticQueryState): TeamItem[]; /** * Get a single team from the statistic-state. * @param statisticState statistic state * @param teamKey identifier of the team */ export declare function selectTeamItem(statisticState: models.StatisticQueryState, teamKey: string): TeamItem | null;