Rocky_Mountain_Vending/.pnpm-store/v10/files/06/917f72c4877a0e377e7dec81e402bff888b6a1651ed5da9d6849045077b4c5fe903f91a7734250cb3ff87f91caea11840088e8b83a9d5308d65c94e3b677bd
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

17 lines
439 B
Text

import { HttpResponse } from "@smithy/types";
export {
Endpoint,
HeaderBag,
HttpHandlerOptions,
HttpMessage,
HttpRequest,
HttpResponse,
QueryParameterBag,
} from "@smithy/types";
export interface Headers extends Map<string, string> {
withHeader(headerName: string, headerValue: string): Headers;
withoutHeader(headerName: string): Headers;
}
export interface ResolvedHttpResponse extends HttpResponse {
body: string;
}