UNPKG

@planjs/utils

Version:

🔧 Common tools collection

10 lines (9 loc) • 319 B
import { Decimal } from 'decimal.js'; declare function decimal(n: Decimal.Value): Decimal; declare namespace decimal { var add: (...values: Decimal.Value[]) => Decimal; var sub: (x: Decimal.Value) => any; var mul: (x: Decimal.Value) => any; var div: (x: Decimal.Value) => any; } export default decimal;