mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 11:27:59 +00:00
7 lines
232 B
TypeScript
7 lines
232 B
TypeScript
import type { ToBnOptions } from '../types.js';
|
|
/**
|
|
* @name u8aToBigInt
|
|
* @summary Creates a BigInt from a Uint8Array object.
|
|
*/
|
|
export declare function u8aToBigInt(value: Uint8Array, { isLe, isNegative }?: ToBnOptions): bigint;
|