Rocky_Mountain_Vending/.pnpm-store/v10/files/3e/af6006702cf4077b61310522b6f113751a6c8923d0cdfe79ccda013b6c4217813d3df5fe99532f7d94b6d65feb6eec87da767bdca0572f655f2b4fd372c70f
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 { ListObjectsOutput, ListObjectsRequest } from "../models/models_0";
import {
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../S3Client";
export { __MetadataBearer };
export { $Command };
export interface ListObjectsCommandInput extends ListObjectsRequest {}
export interface ListObjectsCommandOutput
extends ListObjectsOutput,
__MetadataBearer {}
declare const ListObjectsCommand_base: {
new (
input: ListObjectsCommandInput
): import("@smithy/smithy-client").CommandImpl<
ListObjectsCommandInput,
ListObjectsCommandOutput,
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
input: ListObjectsCommandInput
): import("@smithy/smithy-client").CommandImpl<
ListObjectsCommandInput,
ListObjectsCommandOutput,
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class ListObjectsCommand extends ListObjectsCommand_base {
protected static __types: {
api: {
input: ListObjectsRequest;
output: ListObjectsOutput;
};
sdk: {
input: ListObjectsCommandInput;
output: ListObjectsCommandOutput;
};
};
}