UNPKG
alphasquared.js
Version:
latest (0.0.1-rc.4)
0.0.1-rc.4
0.0.1-rc.3
0.0.1-rc.2
0.0.1-rc.1
A lightweight client for AlphaSquared
alphasquared.js
/
dist
/
index.d.ts
10 lines
(9 loc)
•
244 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
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
{};