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