Rocky_Mountain_Vending/.pnpm-store/v10/files/bf/809d08904c9ba2f1063d927fb65c959a617ca1dc3354934a7ef6e208a3244f32a6c36eaf8bedc8bcc84ff4bd173c0308ab947c873db690eb7cec70ba42f6a6
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_1Protocol extends AwsJsonRpcProtocol {
constructor({
defaultNamespace,
serviceTarget,
awsQueryCompatible,
jsonCodec,
}: {
defaultNamespace: string;
serviceTarget: string;
awsQueryCompatible?: boolean;
jsonCodec?: JsonCodec;
});
getShapeId(): string;
protected getJsonRpcVersion(): "1.1";
protected getDefaultContentType(): string;
}