UNPKG

@dinero.js/calculator-number

Version:

Number calculator implementation for Dinero.js

11 lines (10 loc) 301 B
import type { BinaryOperation } from '@dinero.js/core'; /** * Returns the remainder of two numbers. * * @param dividend - The number to divide. * @param divisor - The number to divide with. * * @returns The remainder of the two numbers. */ export declare const modulo: BinaryOperation<number>;