UNPKG
shrimpy-node-temp
Version:
latest (0.0.2)
0.0.2
0.0.1
Client for the Shrimpy API
github.com/shrimpy-dev/shrimpy-node
shrimpy-dev/shrimpy-node
shrimpy-node-temp
/
dist
/
models
/
itrade.d.ts
12 lines
(11 loc)
•
247 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
Decimal
from
"decimal.js"
;
export
interface
ITrade
{
id
:
string
;
fromSymbol
:
string
;
toSymbol
:
string
;
amount
:
Decimal
;
status
:
string
;
success
:
boolean
;
errorCode
:
number
;
errorMessage
:
string
; }