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
496 B
Text
17 lines
496 B
Text
import { Message } from "@smithy/types";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export interface SmithyMessageEncoderStreamOptions<T> {
|
|
inputStream: AsyncIterable<T>;
|
|
serializer: (event: T) => Message;
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare class SmithyMessageEncoderStream<T> implements AsyncIterable<Message> {
|
|
private readonly options;
|
|
constructor(options: SmithyMessageEncoderStreamOptions<T>);
|
|
[Symbol.asyncIterator](): AsyncIterator<Message>;
|
|
private asyncIterator;
|
|
}
|