mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 21:07:27 +00:00
18 lines
294 B
JavaScript
18 lines
294 B
JavaScript
|
|
const DDragonRequest = require('../../DDragonRequest')
|
||
|
|
|
||
|
|
class DDragonItemEndpoint {
|
||
|
|
constructor(version) {
|
||
|
|
this.version = version
|
||
|
|
}
|
||
|
|
|
||
|
|
list() {
|
||
|
|
return new DDragonRequest(
|
||
|
|
`item.json`,
|
||
|
|
'cdn',
|
||
|
|
this.version
|
||
|
|
).execute()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = DDragonItemEndpoint
|