UNPKG

@jlenon7/zedjs

Version:

Riot API Library for NodeJS

28 lines (27 loc) 774 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const base_api_tft_1 = require("./base/base.api.tft"); const match_tft_1 = require("./match/match.tft"); const summoner_1 = require("./summoner/summoner"); const static_1 = require("./static/static"); /** * TFT Api */ class TftApi extends base_api_tft_1.BaseApiTft { constructor() { super(...arguments); /** * Match methods */ this.Match = new match_tft_1.MatchTFTApi(this.getParam()); /** * Summoner methods */ this.Summoner = new summoner_1.SummonerTftApi(this.getParam()); /** * Static files */ this.StaticFiles = new static_1.TFTStaticFiles(); } } exports.TftApi = TftApi;