guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
12 lines (11 loc) • 328 B
TypeScript
import { ApiBase } from '../../base/apiBase';
/**
* /v2/mapchests Api
*/
export declare class MapChestsApi extends ApiBase {
/**
* Returns information about Hero's Choice Chests that can be acquired once a day in-game.
* NOTE: This endpoint is known to have missing data.
*/
get(): Promise<string[]>;
}