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>
13 lines
359 B
Text
13 lines
359 B
Text
import { HttpResponse, SerdeContext } from "@smithy/types";
|
|
export declare const parseXmlBody: (
|
|
streamBody: any,
|
|
context: SerdeContext
|
|
) => any;
|
|
export declare const parseXmlErrorBody: (
|
|
errorBody: any,
|
|
context: SerdeContext
|
|
) => Promise<any>;
|
|
export declare const loadRestXmlErrorCode: (
|
|
output: HttpResponse,
|
|
data: any
|
|
) => string | undefined;
|