UNPKG

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