Rocky_Mountain_Vending/.pnpm-store/v10/files/8c/b280d52b66ac4ce5fc4bc52ebcaf5268ee092ec495f438a0784f091fb6a505f9209f27ffe9ba4988ee3e9aef2fede6955e25f1ccd01123eb53b3f6f7885f0c
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
718 B
Text

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