Rocky_Mountain_Vending/.pnpm-store/v10/files/16/783b15cedd1047a09e5516ef4b312fc577e86792272b6a5c89e1cb158e229a3e91faa3afec17dfbce38701393600b94fb71758cc0bcbeed938104764e1ea22
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

13 lines
368 B
Text

import { HttpResponse, SerdeFunctions } from "@smithy/types";
export declare const parseJsonBody: (
streamBody: any,
context: SerdeFunctions
) => any;
export declare const parseJsonErrorBody: (
errorBody: any,
context: SerdeFunctions
) => Promise<any>;
export declare const loadRestJsonErrorCode: (
output: HttpResponse,
data: any
) => string | undefined;