UNPKG

league-wrapper

Version:

REST API Wrapper for the League of Legends API

18 lines (14 loc) 387 B
'use strict'; const GameDto = require('./game/game-dto.js'); const PlayerDto = require('./game/player-dto.js'); const RawStatsDto = require('./game/raw-stats-dto.js'); const RecentGamesDto = require('./game/recent-games-dto.js'); /** * @module module:LeagueWrapper/dto/game */ exports = module.exports = { GameDto, PlayerDto, RawStatsDto, RecentGamesDto };