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