Rocky_Mountain_Vending/.pnpm-store/v10/files/a9/44f587e049b863e2acbaa95828a9e3de34cff2d164c7e8295d8ce5508aa1cf3799cccddb47ccff49fa2dcb98681da834c6f5fec7d10d29fc84a7a72b8d0b39
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
711 B
Text

import type { ListSchema as IListSchema, SchemaRef, SchemaTraits } from "@smithy/types";
import { Schema } from "./Schema";
/**
* A schema with a single member schema.
* The deprecated Set type may be represented as a list.
*
* @internal
* @deprecated use StaticSchema
*/
export declare class ListSchema extends Schema implements IListSchema {
static readonly symbol: unique symbol;
name: string;
traits: SchemaTraits;
valueSchema: SchemaRef;
protected readonly symbol: symbol;
}
/**
* Factory for ListSchema.
*
* @internal
* @deprecated use StaticSchema
*/
export declare const list: (namespace: string, name: string, traits: SchemaTraits, valueSchema: SchemaRef) => ListSchema;