Rocky_Mountain_Vending/.pnpm-store/v10/files/b3/ef796b7c4663b3456109ae3cf1c4063bd555b88f48f53331c6ae5e80d8849524c5d517fab0a1dfa3eeb74b761414db90af93a4cbfa20ed5968183edb540669
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

18 lines
732 B
Text

import type { EventStreamCodec } from "@smithy/eventstream-codec";
import type { 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>;