Rocky_Mountain_Vending/.pnpm-store/v10/files/8b/2afe72400057f839a458a8c9b776db2c8f42c949a6d792801768bebcf7270497efbb3b1e610978e8e8937f6280581437cc3c9806fe1aea284a967b4307c341
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

11 lines
237 B
Text

/**
* @internal
*/
export interface MessageParts {
headers: DataView;
body: Uint8Array;
}
/**
* @internal
*/
export declare function splitMessage({ byteLength, byteOffset, buffer }: ArrayBufferView): MessageParts;