@valapi/valorant-api.com
Version:
Valorant API - valorant-api.com
18 lines (17 loc) • 726 B
TypeScript
import type { Language } from "../client/ValorantApiCom";
import { ValorantApiComService } from "../client/ValorantApiComService";
import type { LanguageResponse, Response } from "../client/ValorantApiComService";
export declare namespace Currencies {
interface Currencies<L extends Language> {
uuid: string;
displayName: LanguageResponse<string, L>;
displayNameSingular: LanguageResponse<string, L>;
displayIcon: string;
largeIcon: string;
assetPath: string;
}
}
export declare class Currencies<L extends Language = any> extends ValorantApiComService {
get(): Response<Currencies.Currencies<L>[]>;
getByUuid(uuid: string): Response<Currencies.Currencies<L>>;
}