Rocky_Mountain_Vending/.pnpm-store/v10/files/14/9c70666faa71c9a37b3ad058ed66a33c83cf182758bc5c2ae57578a95fc4d17b3752bb8ba0f2c2e1c0ecf9db7e80f5334b010a291efd1e2a26aabf2db95b19
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
617 B
Text

import { HttpRequest } from "@smithy/types";
import { ClientRequest } from "http";
import { ClientHttp2Stream } from "http2";
/**
* This resolves when writeBody has been called.
*
* @param httpRequest - opened Node.js request.
* @param request - container with the request body.
* @param maxContinueTimeoutMs - time to wait for the continue event.
* @param externalAgent - whether agent is owned by caller code.
*/
export declare function writeRequestBody(httpRequest: ClientRequest | ClientHttp2Stream, request: HttpRequest, maxContinueTimeoutMs?: number, externalAgent?: boolean): Promise<void>;