Rocky_Mountain_Vending/.pnpm-store/v10/files/e5/976487bae559fca7a2facdd7df0e6a7cb5c06c9a23fe735d6fb5a477e185f4963586569b4203c52e1e47ef365a38c254fa937d6dde6d1c4af51f0d104c6a42
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

9 lines
309 B
Text

/**
* Converts a Uint8Array of binary data or a utf-8 string to a base-64 encoded string.
*
* @param _input - the binary data or string to encode.
* @returns base64 string.
*
* @see https://tools.ietf.org/html/rfc4648#section-4
*/
export declare function toBase64(_input: Uint8Array | string): string;