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

27 lines
1.1 KiB
Text

import { NormalizedSchema } from "@smithy/core/schema";
/**
* @internal
*/
type SourceObject = Record<string, any>;
/**
* For serialization use only.
* @internal
*
* @param ns - normalized schema object.
* @param sourceObject - source object from serialization.
*/
export declare function serializingStructIterator(ns: NormalizedSchema, sourceObject: SourceObject): Generator<any[], void, unknown>;
/**
* For deserialization use only.
* Yields a subset of NormalizedSchema::structIterator matched to the source object keys.
* This is a performance optimization to avoid creation of NormalizedSchema member
* objects for members that are undefined in the source data object but may be numerous
* in the schema/model.
* @internal
*
* @param ns - normalized schema object.
* @param sourceObject - source object from deserialization.
* @param nameTrait - xmlName or jsonName trait to look for.
*/
export declare function deserializingStructIterator(ns: NormalizedSchema, sourceObject: SourceObject, nameTrait?: "xmlName" | "jsonName" | false): Generator<any[], void, unknown>;
export {};