nerdamer-ts
Version:
javascript light-weight symbolic math expression evaluator
11 lines (10 loc) • 362 B
TypeScript
/**
*
* @param {Symbol} num - the number being raised
* @param {Symbol} p - the exponent
* @param {type} prec - the precision wanted
* @param {bool} asbig - true if a bigDecimal is wanted
* @returns {Symbol}
*/
export function nthroot(num: Symbol, p: Symbol, prec: any, asbig: any, ...args: any[]): Symbol;
import { Symbol } from "../../../Types/Symbol";