1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1× 1× 1× 1× 1× | import DDragonRequest, { DDragonRequestTypes, } from 'RequestClient/DDragonRequest' import METHOD_NAMES from 'Enums/method-names' class DDragonRunesReforgedEndpoint { constructor(config) { this.config = config this.list = this.list.bind(this) } list() { return new DDragonRequest( this.config, 'runesReforged.json', DDragonRequestTypes.CDN.DATA, METHOD_NAMES.DDRAGON.RUNES_REFORGED_LIST, ) } } export default DDragonRunesReforgedEndpoint |