tft-wtf
v1.0.4
Published
A interface for the official Riot Games TFT API
Downloads
1
Readme
tft-wtf
An interface for the official Riot Games TFT API
v1.0.2+ are the only stable beta build currently. Documentation will be updated soon.
the methods follow the official API routes
Quick example
import tft_wtf from 'tft-wtf'
const client = new tft_wtf({
region: 'na1',
apiKey: 'your_api_key, default is process.env.RIOT_API_KEY',
});
const awesomeSummonerData = await client.summoner_v1_summoners_by_name('your name');
```js