UNPKG

322 BTypeScriptView Raw
1/// <reference types="bn.js" />
2import type { BN } from '../bn';
3import type { ToBigInt, ToBn } from '../types';
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;