@valapi/valorant-api.com
Version:
Valorant API - valorant-api.com
20 lines • 768 B
TypeScript
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