@lit-protocol/uint8arrays
Version:
This submodule provides functions to make dealing with Uint8Arrays easier.
6 lines (5 loc) • 403 B
TypeScript
export declare function utf8Decode(utf8Array: Uint8Array): string;
export declare function base64ToUint8Array(base64Str: string): Uint8Array;
export declare function uint8ArrayToBase64(uint8Array: Uint8Array): string;
export declare function uint8arrayFromString(str: string, encoding?: string): Uint8Array;
export declare function uint8arrayToString(uint8array: Uint8Array, encoding?: string): string;