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
484 B
Text
17 lines
484 B
Text
import { Message, MessageDecoder } from "@smithy/types";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export interface MessageDecoderStreamOptions {
|
|
inputStream: AsyncIterable<Uint8Array>;
|
|
decoder: MessageDecoder;
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare class MessageDecoderStream implements AsyncIterable<Message> {
|
|
private readonly options;
|
|
constructor(options: MessageDecoderStreamOptions);
|
|
[Symbol.asyncIterator](): AsyncIterator<Message>;
|
|
private asyncIterator;
|
|
}
|