@valapi/valorant-api.com
Version:
Valorant API - valorant-api.com
34 lines • 1.08 kB
TypeScript
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