Rocky_Mountain_Vending/.pnpm-store/v10/files/2a/beade15a8e40c2f23dad1779daede988232308190683678f232e6f962f42776cfc412d68dfa99d3236a18b796e9352cc0b6921357f184ea5caf7de40026cca
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
226 B
Text

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