Rocky_Mountain_Vending/.pnpm-store/v10/files/53/0b5eeea0ab03fabd13e16582bdeb52becdc46f5cbf2644e634fb4b669ed0dc909319160a8f9742a38a0748487a98e1fc504ef36af5320c3846253ec0ef9892
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

33 lines
1.1 KiB
Text

import { HttpResponse } from "@smithy/types";
export { Endpoint, HeaderBag, HttpHandlerOptions, HttpMessage, HttpRequest, HttpResponse, QueryParameterBag, } from "@smithy/types";
/**
* @public
*
* A collection of key/value pairs with case-insensitive keys.
*/
export interface Headers extends Map<string, string> {
/**
* Returns a new instance of Headers with the specified header set to the
* provided value. Does not modify the original Headers instance.
*
* @param headerName - The name of the header to add or overwrite
* @param headerValue - The value to which the header should be set
*/
withHeader(headerName: string, headerValue: string): Headers;
/**
* Returns a new instance of Headers without the specified header. Does not
* modify the original Headers instance.
*
* @param headerName - The name of the header to remove
*/
withoutHeader(headerName: string): Headers;
}
/**
* @public
*
* Represents HTTP message whose body has been resolved to a string. This is
* used in parsing http message.
*/
export interface ResolvedHttpResponse extends HttpResponse {
body: string;
}