Rocky_Mountain_Vending/.pnpm-store/v10/files/48/26d647f1a4c9ad133d577211951ae6b369822028a93333bcfae854d989fed6047dddcf6c62293041596f1a879eef75b0f1aa882cbc07e7e19a677043fe212c
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

32 lines
No EOL
923 B
Text

/// <reference types="node" />
/// <reference types="node" />
/**
* Vendored from https://github.com/open-telemetry/opentelemetry-js-contrib/blob/28e209a9da36bc4e1f8c2b0db7360170ed46cb80/plugins/node/instrumentation-undici/src/types.ts
*/
export interface UndiciRequest {
origin: string;
method: string;
path: string;
/**
* Serialized string of headers in the form `name: value\r\n` for v5
* Array of strings v6
*/
headers: string | string[];
/**
* Helper method to add headers (from v6)
*/
addHeader: (name: string, value: string) => void;
throwOnError: boolean;
completed: boolean;
aborted: boolean;
idempotent: boolean;
contentLength: number | null;
contentType: string | null;
body: unknown;
}
export interface UndiciResponse {
headers: Buffer[];
statusCode: number;
statusText: string;
}
//# sourceMappingURL=types.d.ts.map