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