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>
23 lines
757 B
Text
23 lines
757 B
Text
import type { Decoder, Encoder, EventStreamMarshaller as IEventStreamMarshaller, Message } from "@smithy/types";
|
|
import { Readable } from "stream";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export interface EventStreamMarshaller extends IEventStreamMarshaller {
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export interface EventStreamMarshallerOptions {
|
|
utf8Encoder: Encoder;
|
|
utf8Decoder: Decoder;
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare class EventStreamMarshaller {
|
|
private readonly universalMarshaller;
|
|
constructor({ utf8Encoder, utf8Decoder }: EventStreamMarshallerOptions);
|
|
deserialize<T>(body: Readable, deserializer: (input: Record<string, Message>) => Promise<T>): AsyncIterable<T>;
|
|
serialize<T>(input: AsyncIterable<T>, serializer: (event: T) => Message): Readable;
|
|
}
|