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>
18 lines
508 B
Text
18 lines
508 B
Text
import type { Message, MessageEncoder } from "@smithy/types";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export interface MessageEncoderStreamOptions {
|
|
messageStream: AsyncIterable<Message>;
|
|
encoder: MessageEncoder;
|
|
includeEndFrame?: boolean;
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare class MessageEncoderStream implements AsyncIterable<Uint8Array> {
|
|
private readonly options;
|
|
constructor(options: MessageEncoderStreamOptions);
|
|
[Symbol.asyncIterator](): AsyncIterator<Uint8Array>;
|
|
private asyncIterator;
|
|
}
|