mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 06:47:57 +00:00
8 lines
302 B
TypeScript
8 lines
302 B
TypeScript
import type { BN } from '../bn/index.js';
|
|
import type { ToBigInt, ToBn } from '../types.js';
|
|
/**
|
|
* @name nSqrt
|
|
* @summary Calculates the integer square root of a bigint
|
|
*/
|
|
export declare function nSqrt<ExtToBn extends ToBn | ToBigInt>(value: ExtToBn | BN | bigint | string | number | null): bigint;
|