nerdamer-ts
Version:
javascript light-weight symbolic math expression evaluator
21 lines (20 loc) • 657 B
TypeScript
export = bigInt;
export = bigInt;
declare function bigInt(v: any, radix: any): any;
declare namespace bigInt {
export const one: any;
export const zero: any;
export const minusOne: any;
export { max };
export { min };
export { gcd };
export { lcm };
export function isInstance(x: any): boolean;
export { randBetween };
export function fromArray(digits: any, base: any, isNegative: any): any;
}
declare function max(a: any, b: any): any;
declare function min(a: any, b: any): any;
declare function gcd(a: any, b: any): any;
declare function lcm(a: any, b: any): any;
declare function randBetween(a: any, b: any): any;