UNPKG

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