Rocky_Mountain_Vending/.pnpm-store/v10/files/62/4e336b3685c9806ea80bc3ca407e896414614e79e73a2c5474f8611a52efd6d53db4be8b343b2b25d99dce4c819e335b2bf2a22b4f1bc267d8aec1dce40a24
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

33 lines
1 KiB
Text

/**
* Types which may be represented by {@link NumericValue}.
*
* There is currently only one option, because BigInteger and Long should
* use JS BigInt directly, and all other numeric types can be contained in JS Number.
*
* @public
*/
export type NumericType = "bigDecimal";
/**
* Serialization container for Smithy simple types that do not have a
* direct JavaScript runtime representation.
*
* This container does not perform numeric mathematical operations.
* It is a container for discerning a value's true type.
*
* It allows storage of numeric types not representable in JS without
* making a decision on what numeric library to use.
*
* @public
*/
export declare class NumericValue {
readonly string: string;
readonly type: NumericType;
constructor(string: string, type: NumericType);
toString(): string;
static [Symbol.hasInstance](object: unknown): boolean;
}
/**
* Serde shortcut.
* @internal
*/
export declare function nv(input: string | unknown): NumericValue;