@blizzard-api/wow
Version:
A series of helpers to interact with the World of Warcraft Blizzard API
17 lines (16 loc) • 602 B
JavaScript
//#region src/character-hunter-pets/index.ts
/**
* If the character is a hunter, returns a summary of the character's hunter pets. Otherwise, returns an HTTP 404 Not Found error.
* @param realmSlug The slug of the realm.
* @param characterName The lowercase name of the character.
* @returns a summary of the character's hunter pets.
*/
function characterHunterPetsSummary(realmSlug, characterName) {
return {
namespace: "profile",
path: `/profile/wow/character/${realmSlug}/${characterName}/hunter-pets`
};
}
//#endregion
export { characterHunterPetsSummary };
//# sourceMappingURL=index.js.map