valorant-api-types
Version:
A collection of documented endpoints and return types for the unofficial Valorant API
20 lines (19 loc) • 630 B
TypeScript
import { z } from 'zod';
export declare const pregameQuitEndpoint: {
readonly name: "Pre-Game Quit";
readonly description: "Quit the pre-game lobby";
readonly queryName: "Pregame_QuitMatch";
readonly category: "Pre-Game Endpoints";
readonly type: "glz";
readonly method: "POST";
readonly suffix: "pregame/v1/matches/{pre-game match id}/quit";
readonly riotRequirements: {
readonly token: true;
readonly entitlement: true;
readonly clientPlatform: true;
readonly clientVersion: true;
};
readonly responses: {
readonly '204': z.ZodUndefined;
};
};