Rocky_Mountain_Vending/.pnpm-store/v10/files/ce/fef992bc70c2b65c2516f43c999e4e7e8fef5637496a250c0611e65e896c815142fafa737b648b779126636943434c8137672bfd4c46a02b4fbe9aff9ad4bd
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

14 lines
581 B
Text

import type { DeserializeHandlerOptions, MetadataBearer, Pluggable, SerializeHandlerOptions } from "@smithy/types";
import type { PreviouslyResolved } from "./schema-middleware-types";
/**
* @internal
*/
export declare const deserializerMiddlewareOption: DeserializeHandlerOptions;
/**
* @internal
*/
export declare const serializerMiddlewareOption: SerializeHandlerOptions;
/**
* @internal
*/
export declare function getSchemaSerdePlugin<InputType extends object = any, OutputType extends MetadataBearer = any>(config: PreviouslyResolved): Pluggable<InputType, OutputType>;