Type-safe wrapper for the Hive Bedrock API
import { Game, getMonthlyLeaderboard } from "hive-tools-wrapper";
const leaderboard = await getMonthlyLeaderboard(Game.TreasureWars);
import { Game, getMonthlyLeaderboard } from "hive-tools-wrapper";
const leaderboard = await getMonthlyLeaderboard(Game.TreasureWars, 2022, 8);
import { Game, getAllTimeLeaderboard } from "hive-tools-wrapper";
const leaderboard = await getAllTimeLeaderboard(Game.TreasureWars);
import { Game, getMonthlyStats } from "hive-tools-wrapper";
const stats = await getMonthlyStats("NeutronicMC", Game.TreasureWars);
import { Game, getMonthlyStats } from "hive-tools-wrapper";
const stats = await getMonthlyStats("NeutronicMC", Game.TreasureWars, 2022, 8);
import { Game, getAllTimeStats } from "hive-tools-wrapper";
const stats = await getAllTimeStats("NeutronicMC", Game.TreasureWars);