UNPKG

shrimpy-node-temp

Version:
13 lines (11 loc) 252 B
import Decimal from "decimal.js"; export interface ITrade { id: string; fromSymbol: string; toSymbol: string; amount: Decimal; status: string; success: boolean; errorCode: number; errorMessage: string; }