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>
18 lines
507 B
Text
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;
|
|
}
|