Rocky_Mountain_Vending/.pnpm-store/v10/files/14/2dc1577ac6ba0185c76e6218bf5f553df810936b1e8988f00cde4a2ac49536274853bb2b215927a6ff0f8bd12b62058c249a10d0b1bd5f2d88b9da5f2f3d20
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
246 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;