UNPKG

ripple-lib-value

Version:

Classes for dealing with XRP Ledger amount values

12 lines 447 B
import { Value } from './value'; import BigNumber from 'bignumber.js'; declare class IOUValue extends Value { constructor(value: string | BigNumber, roundingMode?: BigNumber.RoundingMode, base?: number); multiply(multiplicand: Value): void; divide(divisor: Value): void; negate(): IOUValue; _canonicalize(value: any): IOUValue; equals(comparator: any): boolean; } export { IOUValue }; //# sourceMappingURL=iouvalue.d.ts.map