UNPKG

valorant-api-types

Version:

A collection of documented endpoints and return types for the unofficial Valorant API

20 lines (19 loc) 673 B
import { z } from 'zod'; export declare const currentGameQuitEndpoint: { readonly name: "Current Game Quit"; readonly description: "Quits the current game"; readonly queryName: "CoreGame_DisassociatePlayer"; readonly category: "Current Game Endpoints"; readonly type: "glz"; readonly method: "POST"; readonly suffix: "core-game/v1/players/{puuid}/disassociate/{current game match id}"; readonly riotRequirements: { readonly token: true; readonly entitlement: true; readonly clientPlatform: true; readonly clientVersion: true; }; readonly responses: { readonly '204': z.ZodUndefined; }; };