Rocky_Mountain_Vending/.pnpm-store/v10/files/60/3f955187a0440e4bf4b1ae300aa02c4d0e56dd8562d2675d0fe3f756289bf7cd19a459a4a5bda24db49cdfec11f21499360c8b82539dac036e114e4814ab66
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

47 lines
1.4 KiB
Text

import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { ListObjectsV2Output, ListObjectsV2Request } from "../models/models_0";
import {
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../S3Client";
export { __MetadataBearer };
export { $Command };
export interface ListObjectsV2CommandInput extends ListObjectsV2Request {}
export interface ListObjectsV2CommandOutput
extends ListObjectsV2Output,
__MetadataBearer {}
declare const ListObjectsV2Command_base: {
new (
input: ListObjectsV2CommandInput
): import("@smithy/smithy-client").CommandImpl<
ListObjectsV2CommandInput,
ListObjectsV2CommandOutput,
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
input: ListObjectsV2CommandInput
): import("@smithy/smithy-client").CommandImpl<
ListObjectsV2CommandInput,
ListObjectsV2CommandOutput,
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class ListObjectsV2Command extends ListObjectsV2Command_base {
protected static __types: {
api: {
input: ListObjectsV2Request;
output: ListObjectsV2Output;
};
sdk: {
input: ListObjectsV2CommandInput;
output: ListObjectsV2CommandOutput;
};
};
}