Rocky_Mountain_Vending/.pnpm-store/v10/files/96/3fba9c218a88cd556b6560b751ecb9cd8159d8c66360ef7635866a87db1a292572f613dd1a544f0f5f14aff7e252cfaee5708ae9e32ff9caeff8eb24737452
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

15 lines
499 B
Text

/**
* @internal
*
* Serializes a number, turning non-numeric values into strings.
*
* @param value - The number to serialize.
* @returns A number, or a string if the given number was non-numeric.
*/
export declare const serializeFloat: (value: number) => string | number;
/**
* @internal
* @param date - to be serialized.
* @returns https://smithy.io/2.0/spec/protocol-traits.html#timestampformat-trait date-time format.
*/
export declare const serializeDateTime: (date: Date) => string;