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>
27 lines
673 B
Text
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 {};
|