UNPKG

@signumjs/util

Version:

Useful utilities and tools for building Signum Network applications

13 lines (12 loc) 397 B
/** * Original work Copyright (c) 2018 PoC-Consortium * Modified work Copyright (c) 2019 Burst Apps Team */ /** * Converts an hexadecimal string to byte array * @param hex The hexadecimal string to be converted * @return {number[]} An byte array representing the hexadecimal input * * @category conversion */ export declare const convertHexStringToByteArray: (hex: string) => Uint8Array;