Rocky_Mountain_Vending/.pnpm-store/v10/files/77/2ef5f3973a2707c4c4111656a05e99618ccb46615bf6a2437d3fc6732d3298f4ea7c81048079def39b051097a59b6fb3c79c2fa3daa23983fb7c8ba90b2369
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

20 lines
509 B
Text

import { AwsQueryProtocol } from "./AwsQueryProtocol";
/**
* @public
*/
export declare class AwsEc2QueryProtocol extends AwsQueryProtocol {
options: {
defaultNamespace: string;
xmlNamespace: string;
version: string;
};
constructor(options: {
defaultNamespace: string;
xmlNamespace: string;
version: string;
});
/**
* EC2 Query reads XResponse.XResult instead of XResponse directly.
*/
protected useNestedResult(): boolean;
}