Rocky_Mountain_Vending/.pnpm-store/v10/files/71/95c83f9d81be8cb4094d409b0b3607d1a91d30588aa0df90e9ebe1b11040d098a3429b44aa70564700277136410fef761129f62d688af1406e2cf13d59290c
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

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 {};