hermes-v2-sdk
Version:
⚒️ An SDK for building applications on top of Hermes V2
13 lines (12 loc) • 417 B
TypeScript
import JSBI from 'jsbi';
export declare abstract class FullMath {
/**
* Cannot be constructed.
*/
private constructor();
static mulDivRoundingUp(a: JSBI, b: JSBI, denominator: JSBI): JSBI;
static mulDownFixed(a: JSBI, b: JSBI): JSBI;
static mulUpFixed(a: JSBI, b: JSBI): JSBI;
static divDownFixed(a: JSBI, b: JSBI): JSBI;
static divUpFixed(a: JSBI, b: JSBI): JSBI;
}