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