valorant-api.ts
v1.0.3
Published
A Typescript library prepared according to the documentation of the Valorant-API.com website.
Downloads
2
Maintainers
Readme
valorant-api.ts
A Typescript library prepared according to the documentation of the Valorant-API.com website.
Usage
You can review the examples below to use the valorant-api.ts library in your project:
import { ValorantApi } from 'valorant-api.ts';
const api = new ValorantApi();
// examples
const agents = await api.agents.getAgents();
const buddies = await api.buddies.getBuddies();
// and so on for other classes.