Rocky_Mountain_Vending/.pnpm-store/v10/files/26/cec012bc8ccefadbd5878c4d8117a31f8ff8e8e6007caebb51af231c06595732dfeabef4b699deb4f7e01484383f1f8fd18ab8a1afbba1cf53605e4d5eea1d
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
537 B
Text

import type { 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: Omit<T, "getName" | "symbol">): T;
static [Symbol.hasInstance](lhs: unknown): boolean;
getName(): string;
}