@dinero.js/calculator-number
Version:
Number calculator implementation for Dinero.js
11 lines (10 loc) • 330 B
TypeScript
import type { BinaryOperation } from '@dinero.js/core';
/**
* Returns the quotient of two numbers with no fractional part.
*
* @param dividend - The number to divide.
* @param divisor - The number to divide with.
*
* @returns The quotient of the two numbers.
*/
export declare const integerDivide: BinaryOperation<number>;