@messari/cli
Version:
Messari Crypto CLI (mcrypto) is a tool for getting cryptocurrency market data, news, and more!
8 lines (7 loc) • 402 B
TypeScript
import { Got } from "got";
import { ApiResponse } from "../@types/types";
declare const httpClient: Got;
export declare const setApiKey: (apiKey: string) => void;
export declare const makeHttpCall: <T>(url: string, loaderString?: string) => Promise<ApiResponse<T>>;
export declare const makeHttpCalls: <T>(urls: string[], loaderString?: string) => Promise<ApiResponse<T>[]>;
export default httpClient;