valorant-api-types
Version:
A collection of documented endpoints and return types for the unofficial Valorant API
15 lines (14 loc) • 499 B
TypeScript
import { z } from 'zod';
export declare const localSwaggerDocsEndpoint: {
readonly name: "Local Swagger Docs";
readonly description: "Fetches json Swagger docs for local endpoints. Can be imported into Swagger or Insomnia.";
readonly category: "Local Endpoints";
readonly type: "local";
readonly suffix: "swagger/v3/openapi.json";
readonly riotRequirements: {
readonly localAuth: true;
};
readonly responses: {
readonly '200': z.ZodUnknown;
};
};