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>
12 lines
380 B
Text
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;
|
|
}
|