@blizzard-api/classic-wow
Version:
A series of helpers to interact with the World of Warcraft Classic Blizzard API
18 lines (17 loc) • 599 B
JavaScript
import { wowCharacterBasePath } from "@blizzard-api/core";
//#region src/character-statistics/index.ts
/**
* @param namespace The namespace to use. See {@link BlizzardNamespaces}.
* @param realmSlug The slug of the realm.
* @param characterName The lowercase name of the character.
* @returns a statistics summary for a character.
*/
function characterStatisticsSummary(namespace, realmSlug, characterName) {
return {
namespace,
path: `${wowCharacterBasePath}/${realmSlug}/${characterName}/statistics`
};
}
//#endregion
export { characterStatisticsSummary };
//# sourceMappingURL=index.js.map