guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
20 lines (19 loc) • 545 B
TypeScript
import type { z } from 'zod';
import { ApiBase } from '../../base/apiBase';
import { LogosDTO } from '../../models';
import { stringArrayType } from '../v2apiUtils';
/**
* /v2/logos Api
*/
export declare class LogosApi extends ApiBase {
/**
* Returns animated image resources (logos).
*/
get(): Promise<z.infer<typeof stringArrayType>>;
/**
* Returns animated image resources (logos).
*
* @param ids - List of logo ids, or "all"
*/
get(ids: string[] | 'all'): Promise<z.infer<typeof LogosDTO>>;
}