Rocky_Mountain_Vending/.pnpm-store/v10/files/5e/0909c61cbec12e280bbed318ec976fe4a569dc28779d70bc1b6cff415d534bffd3f5733b43846a50dc255aac2ddfc468a64ce823d35ef42a004d3c0588a589
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

23 lines
780 B
Text

import { SchemaRef, SchemaTraits, StructureSchema as IStructureSchema } from "@smithy/types";
import { Schema } from "./Schema";
/**
* A structure schema has a known list of members. This is also used for unions.
*
* @internal
* @deprecated use StaticSchema
*/
export declare class StructureSchema extends Schema implements IStructureSchema {
static symbol: symbol;
name: string;
traits: SchemaTraits;
memberNames: string[];
memberList: SchemaRef[];
protected readonly symbol: symbol;
}
/**
* Factory for StructureSchema.
*
* @internal
* @deprecated use StaticSchema
*/
export declare const struct: (namespace: string, name: string, traits: SchemaTraits, memberNames: string[], memberList: SchemaRef[]) => StructureSchema;