Rocky_Mountain_Vending/.pnpm-store/v10/files/2a/2e44949d6a2ae4f8328a25087f43c5c07659a4cbc39a3dde786f84ad1b22a73ba34b05f85bec596c5b1e616681116eac7b593fa2a3a04ca17665a6826ccc4b
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

8 lines
296 B
Text

/**
* Converts a Uint8Array of binary data or a utf-8 string to a base-64 encoded string using
* Node.JS's `buffer` module.
*
* @param _input - the binary data or string to encode.
* @returns base64 string.
*/
export declare const toBase64: (_input: Uint8Array | string) => string;