Team class


A representation of a team in a match.

Signature:

export declare class Team 

Constructor

new Team (data: TeamData, participants: ParticipantData[], champions: Collection<string, Champion>, items: Collection<string, Item>, runeTrees: Collection<string, RuneTree>, summonerSpells: Collection<string, SummonerSpell>)

Constructs a new instance of the Team class.

Parameters:

ParameterTypeDescription
dataTeamData
participantsParticipantData
championsCollection < String, Champion >
itemsCollection < String, Item >
runeTreesCollection < String, RuneTree >
summonerSpellsCollection < String, SummonerSpell >

Properties

bans

The champions banned by the team.

Type: ChampionBan


id

The ID of the team.

Type: Number


objectives

The objectives secured by the team.

Type: TeamObjectivesData


participants

The participants in the team.

Type: Participant


win

Whether the team won the match.

Type: Boolean


Table of Contents