Rocky_Mountain_Vending/.pnpm-store/v10/files/55/29690f588405fdd6df3cbfe07261037cece1e3979e1b631114c75817d518ce83b353787b9e56816ca83705ff6bb688e7b8d8bb310ee4754dcfd7320e83d2ae
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

26 lines
808 B
Text

import { DeserializeMiddleware, Pluggable, RelativeMiddlewareOptions } from "@smithy/types";
/**
* @internal
*/
interface PreviouslyResolved {
}
/**
* @internal
*
* From the S3 Expires compatibility spec.
* A model transform will ensure S3#Expires remains a timestamp shape, though
* it is deprecated.
* If a particular object has a non-date string set as the Expires value,
* the SDK will have the raw string as "ExpiresString" on the response.
*
*/
export declare const s3ExpiresMiddleware: (config: PreviouslyResolved) => DeserializeMiddleware<any, any>;
/**
* @internal
*/
export declare const s3ExpiresMiddlewareOptions: RelativeMiddlewareOptions;
/**
* @internal
*/
export declare const getS3ExpiresMiddlewarePlugin: (clientConfig: PreviouslyResolved) => Pluggable<any, any>;
export {};