Rocky_Mountain_Vending/.pnpm-store/v10/files/89/00fdec1321b8f00ac47feb8b0c35c8044f87ca890ea24b0e64ed029d589846fcd68e939bd2d0f0621c5aba3990707ef5c6b1bf0098af3a5c15c02c9a4912cf
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

28 lines
989 B
Text

import type { SchemaRef, SchemaTraits, TraitsSchema } from "@smithy/types";
import { Schema } from "./Schema";
/**
* Although numeric values exist for most simple schema, this class is used for cases where traits are
* attached to those schema, since a single number cannot easily represent both a schema and its traits.
*
* @internal
* @deprecated use StaticSchema
*/
export declare class SimpleSchema extends Schema implements TraitsSchema {
static readonly symbol: unique symbol;
name: string;
schemaRef: SchemaRef;
traits: SchemaTraits;
protected readonly symbol: symbol;
}
/**
* Factory for simple schema class objects.
*
* @internal
* @deprecated use StaticSchema
*/
export declare const sim: (namespace: string, name: string, schemaRef: SchemaRef, traits: SchemaTraits) => SimpleSchema;
/**
* @internal
* @deprecated
*/
export declare const simAdapter: (namespace: string, name: string, traits: SchemaTraits, schemaRef: SchemaRef) => SimpleSchema;