Rocky_Mountain_Vending/.pnpm-store/v10/files/ae/3f61b4b94a4883ffa82191bc6b3a6b9b262310dcc4afb0a660f92373420dc0cd232b0bd9cb3a0ca399275772cad029acbd06bff96fe1c9f6255766198ada40
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

24 lines
796 B
Text

import { MapSchema as IMapSchema, SchemaRef, SchemaTraits } from "@smithy/types";
import { Schema } from "./Schema";
/**
* A schema with a key schema and value schema.
* @internal
* @deprecated use StaticSchema
*/
export declare class MapSchema extends Schema implements IMapSchema {
static readonly symbol: unique symbol;
name: string;
traits: SchemaTraits;
/**
* This is expected to be StringSchema, but may have traits.
*/
keySchema: SchemaRef;
valueSchema: SchemaRef;
protected readonly symbol: symbol;
}
/**
* Factory for MapSchema.
* @internal
* @deprecated use StaticSchema
*/
export declare const map: (namespace: string, name: string, traits: SchemaTraits, keySchema: SchemaRef, valueSchema: SchemaRef) => MapSchema;