Rocky_Mountain_Vending/.pnpm-store/v10/files/03/ca4d4a83a6f3ab963827c746a1e92915cae0b0e75be62527caf45f80cb1714d31b3cb38cbde59f7afcd327af0523f0ed99cec090d6c744c68c503cf6e5d87b
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
762 B
Text

import type { 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;