UNPKG

@dinero.js/calculator-number

Version:

Number calculator implementation for Dinero.js

11 lines (10 loc) 275 B
import type { BinaryOperation } from '@dinero.js/core'; /** * Returns the sum of two numbers. * * @param augend - The number to add to. * @param addend - The number to add. * * @returns The sum of the two numbers. */ export declare const add: BinaryOperation<number>;