UNPKG

@valapi/valorant-api.com

Version:
23 lines 827 B
import type { ValRequestClient } from "@valapi/lib"; import type { ValAPIClientService, ValAPIResponse } from "../client/Client"; interface ValAPIServiceContentTiers { uuid: string; displayName: ValAPIResponse<string>; devName: string; rank: number; juiceValue: number; juiceCost: number; highlightColor: string; displayIcon: string; assetPath: string; } declare class ContentTiers { private RequestClient; private language; constructor(RequestClient: ValRequestClient, language: string); get(): Promise<ValAPIClientService<ValAPIServiceContentTiers[]>>; getByUuid(uuid: string): Promise<ValAPIClientService<ValAPIServiceContentTiers>>; } export { ContentTiers }; export type { ValAPIServiceContentTiers }; //# sourceMappingURL=ContentTiers.d.ts.map