@blizzard-api/wow
Version:
A series of helpers to interact with the World of Warcraft Blizzard API
16 lines (15 loc) • 466 B
JavaScript
//#region src/character-statistics/index.ts
/**
* @param realmSlug The slug of the realm.
* @param characterName The lowercase name of the character.
* @returns a statistics summary for a character.
*/
function characterStatisticsSummary(realmSlug, characterName) {
return {
namespace: "profile",
path: `/profile/wow/character/${realmSlug}/${characterName}/statistics`
};
}
//#endregion
export { characterStatisticsSummary };
//# sourceMappingURL=index.js.map