UNPKG

league-wrapper

Version:

REST API Wrapper for the League of Legends API

22 lines (18 loc) 604 B
'use strict'; const BannedChampion = require('./current-game/banned-champion.js'); const CurrentGameInfo = require('./current-game/current-game-info.js'); const CurrentGameParticipant = require('./current-game/current-game-participant.js'); const Mastery = require('./current-game/mastery.js'); const Observer = require('./current-game/observer.js'); const Rune = require('./current-game/rune.js'); /** * @module module:LeagueWrapper/dto/currentGame */ exports = module.exports = { BannedChampion, CurrentGameInfo, CurrentGameParticipant, Mastery, Observer, Rune };