@signumjs/util
Version:
Useful utilities and tools for building Signum Network applications
13 lines (12 loc) • 436 B
TypeScript
/**
Original work Copyright (c) 2021 Burst Apps Team
*/
/**
* Converts/Decodes a Hex encoded string into Base36 string. UTF-8 is supported
* Inverse function {@link convertBase36StringToHexString}
* @param hex The string to be decoded (either URI encoded or not)
* @return {string} The hex representation of input string
*
* @category conversion
*/
export declare const convertHexStringToBase36String: (hex: string) => string;