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