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>
23 lines
829 B
Text
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;
|