7 lines
146 B
TypeScript
7 lines
146 B
TypeScript
/**
|
|
* Hex to Base64
|
|
* @param {string} str [hex]
|
|
* @return {string} [base64]
|
|
*/
|
|
export default function hexToBase64(hex: string): string;
|