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>
16 lines
609 B
Text
16 lines
609 B
Text
import { FinalizeRequestHandlerOptions, FinalizeRequestMiddleware, Pluggable } from "@smithy/types";
|
|
/**
|
|
* @internal
|
|
*
|
|
* Log a warning if the input to PutObject is detected to be a Stream of unknown ContentLength and
|
|
* recommend the usage of the @aws-sdk/lib-storage Upload class.
|
|
*/
|
|
export declare function checkContentLengthHeader(): FinalizeRequestMiddleware<any, any>;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const checkContentLengthHeaderMiddlewareOptions: FinalizeRequestHandlerOptions;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const getCheckContentLengthHeaderPlugin: (unused: any) => Pluggable<any, any>;
|