Rocky_Mountain_Vending/.pnpm-store/v10/files/fc/ec2e361a2b231625947fdf76cbce20b865f7f6e6993f55926640e36c840c27b9fe11b2f2359d50b5388bf48b7748635499b1c1efc841c1aaa74efe1601816f
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
566 B
Text

import { SchemaTraits, TraitsSchema } from "@smithy/types";
/**
* Abstract base for class-based Schema except NormalizedSchema.
*
* @internal
* @deprecated use StaticSchema
*/
export declare abstract class Schema implements TraitsSchema {
name: string;
namespace: string;
traits: SchemaTraits;
protected abstract readonly symbol: symbol;
static assign<T extends Schema>(instance: T, values: Pick<T, Exclude<keyof T, "getName" | "symbol">>): T;
static [Symbol.hasInstance](lhs: unknown): boolean;
getName(): string;
}