Metzploreur/node_modules/@smithy/util-base64/dist-types/toBase64.d.ts
clement callaert 244d45ceb8 Version 2
2023-11-01 17:33:25 +01:00

7 lines
219 B
TypeScript

/**
* Converts a Uint8Array of binary data to a base-64 encoded string using
* Node.JS's `buffer` module.
*
* @param input The binary data to encode
*/
export declare const toBase64: (input: Uint8Array) => string;