Rocky_Mountain_Vending/.pnpm-store/v10/files/ce/4949da109ba956389c25fa980a090e7ccf9f5c6149196c34b1ce18e84c7ea12eef27c53629c55adb3eb05ffb07ac0f4e68e7ee036ed8f3e3de533c2fdab5f1
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

12 lines
373 B
Text

/**
* Converts a hexadecimal encoded string to a Uint8Array of bytes.
*
* @param encoded The hexadecimal encoded string
*/
export declare function fromHex(encoded: string): Uint8Array;
/**
* Converts a Uint8Array of binary data to a hexadecimal encoded string.
*
* @param bytes The binary data to encode
*/
export declare function toHex(bytes: Uint8Array): string;