Rocky_Mountain_Vending/.pnpm-store/v10/files/e7/82395d7f63d086651257fb894573e31bd2e5dc61380bb199802e7c683e1c7a606eb8376247cd2d25cc374276af09d8f4e9fd8af37e0ec53f10b9b82f947b37
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

23 lines
829 B
Text

import type { OperationSchema as IOperationSchema, SchemaRef, SchemaTraits } from "@smithy/types";
import { Schema } from "./Schema";
/**
* This is used as a reference container for the input/output pair of schema, and for trait
* detection on the operation that may affect client protocol logic.
*
* @internal
* @deprecated use StaticSchema
*/
export declare class OperationSchema extends Schema implements IOperationSchema {
static readonly symbol: unique symbol;
name: string;
traits: SchemaTraits;
input: SchemaRef;
output: SchemaRef;
protected readonly symbol: symbol;
}
/**
* Factory for OperationSchema.
* @internal
* @deprecated use StaticSchema
*/
export declare const op: (namespace: string, name: string, traits: SchemaTraits, input: SchemaRef, output: SchemaRef) => OperationSchema;