UNPKG

@blizzard-api/wow

Version:

A series of helpers to interact with the World of Warcraft Blizzard API

16 lines (15 loc) 486 B
//#region src/character-equipment/index.ts /** * @param realmSlug The slug of the realm. * @param characterName The lowercase name of the character. * @returns a summary of the items equipped by a character. */ function characterEquipmentSummary(realmSlug, characterName) { return { namespace: "profile", path: `/profile/wow/character/${realmSlug}/${characterName.toLowerCase()}/equipment` }; } //#endregion export { characterEquipmentSummary }; //# sourceMappingURL=index.js.map