mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-26 05:17:27 +00:00
18 lines
299 B
JavaScript
18 lines
299 B
JavaScript
|
|
import DDragonRequest from '../../DDragonRequest'
|
||
|
|
|
||
|
|
class DDragonChampionEndpoint {
|
||
|
|
constructor(version) {
|
||
|
|
this.version = version
|
||
|
|
}
|
||
|
|
|
||
|
|
list() {
|
||
|
|
return new DDragonRequest(
|
||
|
|
`champion.json`,
|
||
|
|
'cdn',
|
||
|
|
this.version
|
||
|
|
).execute()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default DDragonChampionEndpoint
|