@valapi/valorant-api.com
Version:
Valorant API - valorant-api.com
21 lines (20 loc) • 789 B
TypeScript
import type { Language } from "../client/ValorantApiCom";
import { ValorantApiComService } from "../client/ValorantApiComService";
import type { LanguageResponse, Response } from "../client/ValorantApiComService";
export declare namespace ContentTiers {
interface ContentTiers<L extends Language> {
uuid: string;
displayName: LanguageResponse<string, L>;
devName: string;
rank: number;
juiceValue: number;
juiceCost: number;
highlightColor: string;
displayIcon: string;
assetPath: string;
}
}
export declare class ContentTiers<L extends Language = any> extends ValorantApiComService {
get(): Response<ContentTiers.ContentTiers<L>[]>;
getByUuid(uuid: string): Response<ContentTiers.ContentTiers<L>>;
}