UNPKG

open-next-cdk

Version:

Deploy a NextJS app using OpenNext packaging to serverless AWS using CDK

9 lines (8 loc) 240 B
/** * 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;