UNPKG

302 BTypeScriptView Raw
1import type { BN } from '../bn/index.js';
2import type { ToBigInt, ToBn } from '../types.js';
3/**
4 * @name nSqrt
5 * @summary Calculates the integer square root of a bigint
6 */
7export declare function nSqrt<ExtToBn extends ToBn | ToBigInt>(value: ExtToBn | BN | bigint | string | number | null): bigint;