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