Rocky_Mountain_Vending/.pnpm-store/v10/files/a7/7efcc8e025cbf0be0034e256ee4d5cbb99fb8388d897cbea1b80f33ba9e430e77afc10cc45b0bf0b306c35fc5f57582c8881cecc01a8259ddf5ac98230ef5e
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

52 lines
1.5 KiB
Text

import { Command as $Command } from "@smithy/smithy-client";
import {
MetadataBearer as __MetadataBearer,
StreamingBlobPayloadOutputTypes,
} from "@smithy/types";
import { GetObjectRequest, GetObjectOutput } from "../models/models_0";
import {
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../S3Client";
export { __MetadataBearer };
export { $Command };
export interface GetObjectCommandInput extends GetObjectRequest {}
export interface GetObjectCommandOutput
extends Pick<GetObjectOutput, Exclude<keyof GetObjectOutput, "Body">>,
__MetadataBearer {
Body?: StreamingBlobPayloadOutputTypes;
}
declare const GetObjectCommand_base: {
new (
input: GetObjectCommandInput
): import("@smithy/smithy-client").CommandImpl<
GetObjectCommandInput,
GetObjectCommandOutput,
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
input: GetObjectCommandInput
): import("@smithy/smithy-client").CommandImpl<
GetObjectCommandInput,
GetObjectCommandOutput,
S3ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class GetObjectCommand extends GetObjectCommand_base {
protected static __types: {
api: {
input: GetObjectRequest;
output: GetObjectOutput;
};
sdk: {
input: GetObjectCommandInput;
output: GetObjectCommandOutput;
};
};
}