Rocky_Mountain_Vending/.pnpm-store/v10/files/3e/c59b67d12b7d6710bb86765a9747680990eae5b9c876ffacfaeddfe8d5d74db65d8411713ad0f3a4fcc5e76c0fdd745557e1444473073bf9ce54d7369ab209
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

27 lines
673 B
Text

import type { EventStreamMarshaller, EventStreamSerdeProvider } from "@smithy/types";
/**
* @public
*/
export interface EventStreamSerdeInputConfig {
}
/**
* @internal
*/
export interface EventStreamSerdeResolvedConfig {
eventStreamMarshaller: EventStreamMarshaller;
}
/**
* @internal
*/
interface PreviouslyResolved {
/**
* Provide the event stream marshaller for the given runtime
* @internal
*/
eventStreamSerdeProvider: EventStreamSerdeProvider;
}
/**
* @internal
*/
export declare const resolveEventStreamSerdeConfig: <T>(input: T & PreviouslyResolved & EventStreamSerdeInputConfig) => T & EventStreamSerdeResolvedConfig;
export {};