Rocky_Mountain_Vending/.pnpm-store/v10/files/48/78d608558f89e59f8a528c2c447690bcd8e168faec25b35ed9f1a26fbfd5ed11582d9bc4d3e788fd86a0583c89d0453a2e855ecc1bfde3c1b4aee69497e36e
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
411 B
Text

import { Schema } from "./Schema";
export class StructureSchema extends Schema {
static symbol = Symbol.for("@smithy/str");
name;
traits;
memberNames;
memberList;
symbol = StructureSchema.symbol;
}
export const struct = (namespace, name, traits, memberNames, memberList) => Schema.assign(new StructureSchema(), {
name,
namespace,
traits,
memberNames,
memberList,
});