@blizzard-api/wow
Version:
A series of helpers to interact with the World of Warcraft Blizzard API
16 lines (15 loc) • 354 B
JavaScript
import { wowBasePath } from "@blizzard-api/core";
//#region src/wow-token/index.ts
/**
* Get the current WoW token price.
* @returns The WoW token price. See {@link WowTokenResponse}.
*/
function wowToken() {
return {
namespace: "dynamic",
path: `${wowBasePath}/token/index`
};
}
//#endregion
export { wowToken };
//# sourceMappingURL=index.js.map