UNPKG

alphasquared.js

Version:

A lightweight client for AlphaSquared

10 lines (9 loc) 244 B
type RiskValueResponse = { latest_risk_value: string; }; export declare class AlphaSquared { private _apiKey; constructor(apiKey: string); get(type?: "BTC" | "ETH"): Promise<RiskValueResponse["latest_risk_value"]>; } export {};