Matchups: implemented matchups
This commit is contained in:
@@ -31,6 +31,17 @@ declare global {
|
||||
pickrate: number
|
||||
}
|
||||
|
||||
/**
|
||||
* Represents counter data for a champion
|
||||
*/
|
||||
interface MatchupData {
|
||||
championId: number
|
||||
winrate: number
|
||||
games: number
|
||||
championName: string
|
||||
championAlias: string
|
||||
}
|
||||
|
||||
/**
|
||||
* Represents lane-specific champion data
|
||||
*/
|
||||
@@ -43,6 +54,7 @@ declare global {
|
||||
pickrate: number
|
||||
runes?: Rune[]
|
||||
builds?: Builds
|
||||
matchups?: MatchupData[]
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user