📖 These are the docs for an older version. View the latest BigDecimal.js documentation →
bigdecimal.js
    Preparing search index...

    Interface MathContextConstructor

    Type of the MC constructor function, which builds a MathContext and can be invoked with or without new.

    interface MathContextConstructor {
        new MathContextConstructor(
            precision: number,
            roundingMode?: RoundingMode,
        ): MathContext;
        (precision: number, roundingMode?: RoundingMode): MathContext;
    }
    Index