9 lines
253 B
TypeScript
9 lines
253 B
TypeScript
|
/**
|
||
|
* The least common multiple computed as abs(a*b)/gcd(a,b)
|
||
|
* @param a
|
||
|
* @param b
|
||
|
*
|
||
|
* @returns The least common multiple of a and b
|
||
|
*/
|
||
|
export declare function lcm(a: number | bigint, b: number | bigint): bigint;
|
||
|
//# sourceMappingURL=lcm.d.ts.map
|