UNPKG

@valapi/valorant-api.com

Version:
20 lines 768 B
import type { ValRequestClient } from "@valapi/lib"; import type { ValAPIClientService, ValAPIResponse } from "../client/Client"; interface ValAPIServiceCurrencies { uuid: string; displayName: ValAPIResponse<string>; displayNameSingular: ValAPIResponse<string>; displayIcon: string; largeIcon: string; assetPath: string; } declare class Currencies { private RequestClient; private language; constructor(RequestClient: ValRequestClient, language: string); get(): Promise<ValAPIClientService<ValAPIServiceCurrencies[]>>; getByUuid(uuid: string): Promise<ValAPIClientService<ValAPIServiceCurrencies>>; } export { Currencies }; export type { ValAPIServiceCurrencies }; //# sourceMappingURL=Currencies.d.ts.map