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

27 lines
909 B
Text

import { AwsCredentialIdentity } from "@aws-sdk/types";
import {
BuildHandlerOptions,
BuildMiddleware,
Logger,
MemoizedProvider,
Pluggable,
} from "@smithy/types";
import { S3ExpressIdentity } from "../interfaces/S3ExpressIdentity";
import { S3ExpressIdentityProvider } from "../interfaces/S3ExpressIdentityProvider";
declare module "@smithy/types" {
interface HandlerExecutionContext {
s3ExpressIdentity?: S3ExpressIdentity;
}
}
export interface S3ExpressResolvedConfig {
logger?: Logger;
s3ExpressIdentityProvider: S3ExpressIdentityProvider;
credentials: MemoizedProvider<AwsCredentialIdentity>;
}
export declare const s3ExpressMiddleware: (
options: S3ExpressResolvedConfig
) => BuildMiddleware<any, any>;
export declare const s3ExpressMiddlewareOptions: BuildHandlerOptions;
export declare const getS3ExpressPlugin: (
options: S3ExpressResolvedConfig
) => Pluggable<any, any>;