mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 20:48:02 +00:00
7 lines
245 B
TypeScript
7 lines
245 B
TypeScript
import type { ToBnOptions } from '../types.js';
|
|
/**
|
|
* @name hexToBigInt
|
|
* @summary Creates a BigInt instance object from a hex string.
|
|
*/
|
|
export declare function hexToBigInt(value?: string | null, { isLe, isNegative }?: ToBnOptions): bigint;
|