Rocky_Mountain_Vending/.pnpm-store/v10/files/a2/5176278a96f0bcd61e2af54cdff0e561c986d1f65510fdae2a7d62ea75417d0d83791a77f7dea5aaa8c546a08c5d359d7903a41e1c1f6fea698f3ceecb5b3c
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
729 B
Text

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