Rocky_Mountain_Vending/.pnpm-store/v10/files/b2/cac7a0ecbfef4840a3e08b3c9e03f1a5aea9176cdf139e08bc2a3b60f1f09a667127f91a4763b11cc2310be7b7c45081654b6a5e39ac42f771381b97a5cb97
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

24 lines
874 B
Text

import type { Int64 as IInt64, MessageHeaders } from "@smithy/types";
/**
* @internal
* TODO: duplicated from @smithy/eventstream-codec to break large dependency.
* TODO: This should be moved to its own deduped submodule in @smithy/core when submodules are implemented.
*/
export declare class HeaderFormatter {
format(headers: MessageHeaders): Uint8Array;
private formatHeaderValue;
}
/**
* TODO: duplicated from @smithy/eventstream-codec to break large dependency.
* TODO: This should be moved to its own deduped submodule in @smithy/core when submodules are implemented.
*/
export declare class Int64 implements IInt64 {
readonly bytes: Uint8Array;
constructor(bytes: Uint8Array);
static fromNumber(number: number): Int64;
/**
* Called implicitly by infix arithmetic operators.
*/
valueOf(): number;
toString(): string;
}