mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 05:38:03 +00:00
17 lines
427 B
TypeScript
17 lines
427 B
TypeScript
import type { ToBn } from '../types.js';
|
|
import { BN } from './bn.js';
|
|
/**
|
|
* @name bnSqrt
|
|
* @summary Calculates the integer square root of a BN
|
|
* @example
|
|
* <BR>
|
|
*
|
|
* ```javascript
|
|
* import BN from 'bn.js';
|
|
* import { bnSqrt } from '@pezkuwi/util';
|
|
*
|
|
* bnSqrt(new BN(16)).toString(); // => '4'
|
|
* ```
|
|
*/
|
|
export declare function bnSqrt<ExtToBn extends ToBn>(value: ExtToBn | BN | bigint | string | number | null): BN;
|