Rocky_Mountain_Vending/.pnpm-store/v10/files/0d/6f3065150c2a8a027cf81f0c6036d505a27ea05399c6c3080edc6878d4863d8f5a93f42084d37d08c5cbfc0da0ca3f693c41823e069457fed875caf53101d5
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

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;
}