Rocky_Mountain_Vending/.pnpm-store/v10/files/7d/dd388fe387df3f246f4df38cbc43e4892f3d97a99aa6bb8562e04af9d5e2b2325bc8a72d54a5acc086a771cf7077022b2aa6b65399e87d774fa55971f489c4
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

14 lines
350 B
Text

import { Schema } from "./Schema";
export class ListSchema extends Schema {
static symbol = Symbol.for("@smithy/lis");
name;
traits;
valueSchema;
symbol = ListSchema.symbol;
}
export const list = (namespace, name, traits, valueSchema) => Schema.assign(new ListSchema(), {
name,
namespace,
traits,
valueSchema,
});