UNPKG

@dinero.js/calculator-number

Version:

Number calculator implementation for Dinero.js

11 lines (10 loc) 310 B
import type { BinaryOperation } from '@dinero.js/core'; /** * Returns the product of two numbers. * * @param multiplicand - The number to multiply. * @param multiplier - The number to multiply with. * * @returns The product of the two numbers. */ export declare const multiply: BinaryOperation<number>;