Rocky_Mountain_Vending/.pnpm-store/v10/files/e6/f73caac6bd4d45d6e511876153a7beb09cc218129568e273d78c4516fce41a4495db50d20f993def60e4de1710c79f75cdad6a874e3ba5a014c2171d67a741
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

7 lines
223 B
Text

/**
* Converts a base-64 encoded string to a Uint8Array of bytes using Node.JS's
* `buffer` module.
*
* @param input The base-64 encoded string
*/
export declare const fromBase64: (input: string) => Uint8Array;