Rocky_Mountain_Vending/.pnpm-store/v10/files/36/e18a3fbf03585e986926b2b99cce973019b8e268aca072bde3de0d5c747324952a113c13d567b0565d7fa04c64b3260698db2b80ddf1971f875684295f66b6
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
238 B
Text

/**
* Converts a base-64 encoded string to a Uint8Array of bytes.
*
* @param input The base-64 encoded string
*
* @see https://tools.ietf.org/html/rfc4648#section-4
*/
export declare const fromBase64: (input: string) => Uint8Array;