Rocky_Mountain_Vending/.pnpm-store/v10/files/03/354726df3bd4473ecd85f1a2b3d0bade5d89b2936596b8308f3316a80d57acb532ca7540c9868dd275c05acf57c0d78c119b7ca1b16ff43e93f6aa3242dc80
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

12 lines
373 B
Text

import type { Decoder, Encoder, MessageHeaders } from "@smithy/types";
/**
* @internal
*/
export declare class HeaderMarshaller {
private readonly toUtf8;
private readonly fromUtf8;
constructor(toUtf8: Encoder, fromUtf8: Decoder);
format(headers: MessageHeaders): Uint8Array;
private formatHeaderValue;
parse(headers: DataView): MessageHeaders;
}