UNPKG

245 BTypeScriptView Raw
1import type { ToBnOptions } from '../types.js';
2/**
3 * @name hexToBigInt
4 * @summary Creates a BigInt instance object from a hex string.
5 */
6export declare function hexToBigInt(value?: string | null, { isLe, isNegative }?: ToBnOptions): bigint;