@dfinity/principal
Version:
JavaScript and TypeScript library to work with Internet Computer principals
10 lines • 325 B
TypeScript
/**
* @param input The Uint8Array to encode.
* @returns A Base32 string encoding the input.
*/
export declare function base32Encode(input: Uint8Array): string;
/**
* @param input The base32 encoded string to decode.
*/
export declare function base32Decode(input: string): Uint8Array;
//# sourceMappingURL=base32.d.ts.map