UNPKG

@numio/bigmath

Version:

@numio/bigmath is an arbitrary-precision arithmetic library. It can be used for basic operations with decimal numbers (integers and float)

4 lines (3 loc) 159 B
import type { BI } from "../shared/types.d.ts"; export type Mod = (left: string, right: string) => string; export type ModInner = (left: BI, right: BI) => BI;