Rocky_Mountain_Vending/.pnpm-store/v10/files/92/af9839165cd3f107ffb8fa3976ff89d0f67e089916ea2d465dfedbf9df0481d3bf6ef744ebed00def0cfd443806217f4c3f58ddbc79cf8e8209be3187ecb4d
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,016 B
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;