UNPKG

@dinero.js/calculator-number

Version:

Number calculator implementation for Dinero.js

10 lines (9 loc) 238 B
import type { UnaryOperation } from '@dinero.js/core'; /** * Returns an decremented number. * * @param value - The number to decrement. * * @returns The decremented number. */ export declare const decrement: UnaryOperation<number>;