Rocky_Mountain_Vending/.pnpm-store/v10/files/d5/1880d565e938563d8b21d70d9862b827fdba5c69834f811744b38f866eff63f48cc833f72ea8a99f8b44c425c302832af301ce6ec4c91817991d4d6a630e05
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
893 B
Text

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