UNPKG

@melonproject/token-math

Version:

A small helper library to do precision safe calculations

14 lines (13 loc) 323 B
import PriceInterface from "./PriceInterface"; declare global { namespace jest { interface Matchers<R> { toBeEqual: (arg: PriceInterface) => {}; } } } declare const toBeEqual: (received: any, expected: any) => { pass: boolean; message: () => string; }; export default toBeEqual;