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>
17 lines
489 B
Text
17 lines
489 B
Text
import {
|
|
DeserializeMiddleware,
|
|
Encoder,
|
|
Pluggable,
|
|
RelativeMiddlewareOptions,
|
|
} from "@smithy/types";
|
|
type PreviouslyResolved = {
|
|
utf8Encoder: Encoder;
|
|
};
|
|
export declare const throw200ExceptionsMiddleware: (
|
|
config: PreviouslyResolved
|
|
) => DeserializeMiddleware<any, any>;
|
|
export declare const throw200ExceptionsMiddlewareOptions: RelativeMiddlewareOptions;
|
|
export declare const getThrow200ExceptionsPlugin: (
|
|
config: PreviouslyResolved
|
|
) => Pluggable<any, any>;
|
|
export {};
|