UNPKG

300 BTypeScriptView Raw
1interface Options {
2 bitLength?: 32 | 64;
3 isLe?: boolean;
4}
5/**
6 * @name u8aToFloat
7 * @description Converts a Uint8Array value into the float (either 32 or 64-bit)
8 * representation.
9 */
10export declare function u8aToFloat(value: Uint8Array, { bitLength, isLe }?: Options): number;
11export {};