Rocky_Mountain_Vending/.pnpm-store/v10/files/f9/bd641bd0c314d13a5e04624c9232a7ea75012b9391fcf891a2e56f006d883a825345e0760ff686d828863045b13fba231cd86618a634193eb85b4b10d2d2de
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
514 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;