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>
24 lines
796 B
Text
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;
|