twisted-axios
Version:
Fetching riot games api data
14 lines (13 loc) • 348 B
TypeScript
export interface IEndpoint {
path: string;
version: number;
prefix: string;
}
interface IEndpoints {
[key: string]: IEndpoint;
}
export declare const endpointsV4: IEndpoints;
export declare const endpointsV3: IEndpoints;
export declare const endpointsTFTV1: IEndpoints;
export declare const endpointsClashV1: IEndpoints;
export {};