UNPKG

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