UNPKG

@valapi/valorant-api.com

Version:

Valorant API - valorant-api.com

17 lines (16 loc) 649 B
import type { Language } from "../client/ValorantApiCom"; import { ValorantApiComService } from "../client/ValorantApiComService"; import type { LanguageResponse, Response } from "../client/ValorantApiComService"; export declare namespace Themes { interface Themes<L extends Language> { uuid: string; displayName: LanguageResponse<string, L>; displayIcon: string; storeFeaturedImage: string; assetPath: string; } } export declare class Themes<L extends Language = any> extends ValorantApiComService { get(): Response<Themes.Themes<L>[]>; getByUuid(uuid: string): Response<Themes.Themes<L>>; }