valorant-api-types
Version:
A collection of documented endpoints and return types for the unofficial Valorant API
28 lines (27 loc) • 998 B
TypeScript
import { z } from 'zod';
export declare const localHelpEndpoint: {
readonly name: "Local Help";
readonly description: "Get help for the local client";
readonly category: "Local Endpoints";
readonly type: "local";
readonly suffix: "help";
readonly riotRequirements: {
readonly localAuth: true;
};
readonly responses: {
readonly '200': z.ZodObject<{
events: z.ZodRecord<z.ZodString, z.ZodString>;
functions: z.ZodRecord<z.ZodString, z.ZodString>;
types: z.ZodRecord<z.ZodString, z.ZodString>;
}, "strip", z.ZodTypeAny, {
events: Record<string, string>;
functions: Record<string, string>;
types: Record<string, string>;
}, {
events: Record<string, string>;
functions: Record<string, string>;
types: Record<string, string>;
}>;
};
};
export type LocalHelpResponse = z.input<typeof localHelpEndpoint.responses['200']>;