Rocky_Mountain_Vending/.pnpm-store/v10/files/27/da63af8e9077e00f5ed50211fd04dce6cd57e0761199644ae90b4b1a6c96b0fcdfd30e264d1b42222b47ff6d86d40e79c367fec679ba9f566034fa33a4c96d
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

18 lines
507 B
Text

import { AwsJsonRpcProtocol } from "./AwsJsonRpcProtocol";
import { JsonCodec } from "./JsonCodec";
export declare class AwsJson1_0Protocol extends AwsJsonRpcProtocol {
constructor({
defaultNamespace,
serviceTarget,
awsQueryCompatible,
jsonCodec,
}: {
defaultNamespace: string;
serviceTarget: string;
awsQueryCompatible?: boolean;
jsonCodec?: JsonCodec;
});
getShapeId(): string;
protected getJsonRpcVersion(): "1.0";
protected getDefaultContentType(): string;
}