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