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
533 B
Text
17 lines
533 B
Text
import { Message } from "@smithy/types";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export interface SmithyMessageDecoderStreamOptions<T> {
|
|
readonly messageStream: AsyncIterable<Message>;
|
|
readonly deserializer: (input: Message) => Promise<T | undefined>;
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare class SmithyMessageDecoderStream<T> implements AsyncIterable<T> {
|
|
private readonly options;
|
|
constructor(options: SmithyMessageDecoderStreamOptions<T>);
|
|
[Symbol.asyncIterator](): AsyncIterator<T>;
|
|
private asyncIterator;
|
|
}
|