UNPKG

@melonproject/token-math

Version:

A small helper library to do precision safe calculations

9 lines (8 loc) 301 B
import ConvertableBigInteger from "../bigInteger/ConvertableBigInteger"; import QuantityInterface from "../quantity/QuantityInterface"; export declare type IsZero = { (a: ConvertableBigInteger): boolean; (a: QuantityInterface): boolean; }; declare const isZero: IsZero; export default isZero;