Rocky_Mountain_Vending/.pnpm-store/v10/files/0c/0f1bd1cd65ce787018bb3985f0b6c9f14979328da5bd32b3da8723b57ea782a2150e100601b4fc163fa00134449200b905044c2dec6b887871c2d2d3453e44
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

20 lines
703 B
Text

import type { Int64 as IInt64 } from "@smithy/types";
export interface Int64 extends IInt64 {
}
/**
* A lossless representation of a signed, 64-bit integer. Instances of this
* class may be used in arithmetic expressions as if they were numeric
* primitives, but the binary representation will be preserved unchanged as the
* `bytes` property of the object. The bytes should be encoded as big-endian,
* two's complement integers.
*/
export declare class Int64 {
readonly bytes: Uint8Array;
constructor(bytes: Uint8Array);
static fromNumber(number: number): Int64;
/**
* Called implicitly by infix arithmetic operators.
*/
valueOf(): number;
toString(): string;
}