@blizzard-api/sc2
Version:
A series of helpers to interact with the Starcraft II Blizzard API
27 lines (26 loc) • 948 B
JavaScript
import { player } from "./account/index.js";
import { grandmasterLeaderboard, season } from "./ladder/index.js";
import { getLeagueData } from "./league/index.js";
import { legacyAchievements, legacyLadder, legacyLadders, legacyMatchHistory, legacyProfile, legacyRewards } from "./legacy/index.js";
import { ladder, ladderSummary, metadata, profile, staticProfile } from "./profile/index.js";
//#region src/index.ts
const sc2 = {
player,
grandmasterLeaderboard,
season,
getLeagueData,
legacyAchievements,
legacyLadder,
legacyLadders,
legacyMatchHistory,
legacyProfile,
legacyRewards,
ladder,
ladderSummary,
metadata,
profile,
staticProfile
};
//#endregion
export { sc2 as default, sc2, getLeagueData, grandmasterLeaderboard, ladder, ladderSummary, legacyAchievements, legacyLadder, legacyLadders, legacyMatchHistory, legacyProfile, legacyRewards, metadata, player, profile, season, staticProfile };
//# sourceMappingURL=index.js.map