Rocky_Mountain_Vending/.pnpm-store/v10/files/bf/a39f5ac04dbfb34d53780f580cdd1add12abe6a0e8cbcaf2b88144638aabdbf41b49ef0591693e1ed1fed7e724a40eec4cdb6060e606c5b7913b2a1f4d20e4
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
380 B
Text

import { 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;
}