@blizzard-api/wow
Version:
A series of helpers to interact with the World of Warcraft Blizzard API
21 lines (20 loc) • 650 B
TypeScript
import { Resource, ResponseBase } from "@blizzard-api/core";
//#region src/wow-token/types.d.ts
/**
* The response for a WoW token.
* @see {@link https://develop.battle.net/documentation/world-of-warcraft/game-data-apis}
*/
interface WowTokenResponse extends ResponseBase {
last_updated_timestamp: number;
price: number;
}
//#endregion
//#region src/wow-token/index.d.ts
/**
* Get the current WoW token price.
* @returns The WoW token price. See {@link WowTokenResponse}.
*/
declare function wowToken(): Resource<WowTokenResponse>;
//#endregion
export { WowTokenResponse as n, wowToken as t };
//# sourceMappingURL=index-tq0i3Iy82.d.ts.map