UNPKG

@melonproject/token-math

Version:

A small helper library to do precision safe calculations

8 lines (7 loc) 275 B
import ConvertableBigInteger from "../bigInteger/ConvertableBigInteger"; import TokenInterface from "../token/TokenInterface"; interface QuantityInterface { readonly token: TokenInterface; readonly quantity: ConvertableBigInteger; } export default QuantityInterface;