UNPKG

@valapi/valorant-api.com

Version:
34 lines 1.08 kB
import type { ValRequestClient } from "@valapi/lib"; import type { ValAPIClientService, ValAPIResponse } from "../client/Client"; interface ValAPIServiceMaps { uuid: string; displayName: ValAPIResponse<string>; coordinates: ValAPIResponse<string>; displayIcon: string; listViewIcon: string; splash: string; assetPath: string; mapUrl: string; xMultiplier: number; yMultiplier: number; xScalarToAdd: number; yScalarToAdd: number; callouts: Array<{ regionName: ValAPIResponse<string>; superRegionName: ValAPIResponse<string>; location: { x: number; y: number; }; }>; } declare class Maps { private RequestClient; private language; constructor(RequestClient: ValRequestClient, language: string); get(): Promise<ValAPIClientService<ValAPIServiceMaps[]>>; getByUuid(uuid: string): Promise<ValAPIClientService<ValAPIServiceMaps>>; } export { Maps }; export type { ValAPIServiceMaps }; //# sourceMappingURL=Maps.d.ts.map