Rocky_Mountain_Vending/.pnpm-store/v10/files/59/73419006053664d5e4c1d37122bc0c0b5b4eaecb337262a79c23d2d750c91bfcd4d8d5540fcac32107ccf58781ff77a058d7249e7efa7a2bcc8b1ded9913b0
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

16 lines
387 B
Text

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