tips-twisted
Version:
Fetching riot games api data
18 lines (17 loc) • 539 B
TypeScript
export interface IEndpoint {
path: string;
version: number;
prefix: string;
}
interface IEndpoints {
[key: string]: IEndpoint;
}
export declare const endpointsV5: IEndpoints;
export declare const endpointsV4: IEndpoints;
export declare const endpointsV3: IEndpoints;
export declare const endpointsTFTV5: IEndpoints;
export declare const endpointsTFTV1: IEndpoints;
export declare const endpointsClashV1: IEndpoints;
export declare const endpointsRiotV1: IEndpoints;
export declare const endpointsV1: IEndpoints;
export {};