Files
pezkuwi-common/packages/util/cjs/hex/toBigInt.d.ts
T

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;