Rocky_Mountain_Vending/.pnpm-store/v10/files/67/bfab808a5de86f407b4634b129d0b28e2a69bca7560a9adf53f611a65494d3e662b165e82473de05b1ee14dacffe4fbe65c2bed0b82548e4f3a15b1a89ae2f
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
318 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;