@gameye/sdk
Version:
Node.js SDK for Gameye
23 lines • 580 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Fetch statistic state
* @param matchKey identifier of the match
*/
function queryStatistic(matchKey) {
return this.query("statistic", {
matchKey,
});
}
exports.queryStatistic = queryStatistic;
/**
* Subscribe to statistic state
* @param matchKey identifier of the match
*/
function subscribeStatistic(matchKey) {
return this.subscribe("statistic", {
matchKey,
});
}
exports.subscribeStatistic = subscribeStatistic;
//# sourceMappingURL=gameye-statistic.js.map