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
740 B
Text
18 lines
740 B
Text
import { EventStreamCodec } from "@smithy/eventstream-codec";
|
|
import { Encoder, Message } from "@smithy/types";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export type UnmarshalledStreamOptions<T> = {
|
|
eventStreamCodec: EventStreamCodec;
|
|
deserializer: (input: Record<string, Message>) => Promise<T>;
|
|
toUtf8: Encoder;
|
|
};
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare function getUnmarshalledStream<T extends Record<string, any>>(source: AsyncIterable<Uint8Array>, options: UnmarshalledStreamOptions<T>): AsyncIterable<T>;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare function getMessageUnmarshaller<T extends Record<string, any>>(deserializer: (input: Record<string, Message>) => Promise<T>, toUtf8: Encoder): (input: Message) => Promise<T | undefined>;
|