@valapi/valorant-api.com
Version:
Valorant API - valorant-api.com
14 lines (13 loc) • 410 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Maps = void 0;
const ValorantApiComService_1 = require("../client/ValorantApiComService");
class Maps extends ValorantApiComService_1.ValorantApiComService {
get() {
return this.request.get(`/v1/maps`);
}
getByUuid(uuid) {
return this.request.get(`/v1/maps/${uuid}`);
}
}
exports.Maps = Maps;
;