UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

14 lines (13 loc) 348 B
import { ApiBase } from '../../base/apiBase'; /** * /v2/build Api */ export declare class BuildApi extends ApiBase { /** * Returns the current build id of the game. * NOTE: This endpoint is broken, and after a certain timestamp, seems to be returning the exact same value. */ get(): Promise<{ id: number; }>; }