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>
17 lines
439 B
Text
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;
|
|
}
|