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>
26 lines
808 B
Text
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 {};
|