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

8 lines
240 B
TypeScript

/**
* Converts a Uint8Array of binary data to a base-64 encoded string.
*
* @param input The binary data to encode
*
* @see https://tools.ietf.org/html/rfc4648#section-4
*/
export declare function toBase64(input: Uint8Array): string;