Rocky_Mountain_Vending/.pnpm-store/v10/files/89/29bc2d2af52952abdb39af54ed3c8395be90d6b22f1112242b8cf391c5cdf4408bdd7347041444bf58a0e20b7c99d3feac46aa6a8d6a5817ef56875d9383f7
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
777 B
Text

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