Rocky_Mountain_Vending/.pnpm-store/v10/files/7e/6447869bcf22f3fcdfcaaf4d4d0b754069ca5fe93b3ac9be3ac3fa740a8ae8b10a95a9926c63a0be9d20b5012836ff622c780fb6a64f49e7d2cd8c5638812c
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

47 lines
1.7 KiB
Text

/**
* @internal
*
* Parses a value into a Date. Returns undefined if the input is null or
* undefined, throws an error if the input is not a number or a parseable string.
*
* Input strings must be an integer or floating point number. Fractional seconds are supported.
*
* @param value - the value to parse
* @returns a Date or undefined
*/
export declare const _parseEpochTimestamp: (value: unknown) => Date | undefined;
/**
* @internal
*
* Parses a value into a Date. Returns undefined if the input is null or
* undefined, throws an error if the input is not a string that can be parsed
* as an RFC 3339 date.
*
* Input strings must conform to RFC3339 section 5.6, and can have a UTC
* offset. Fractional precision is supported.
*
* @see {@link https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14}
*
* @param value - the value to parse
* @returns a Date or undefined
*/
export declare const _parseRfc3339DateTimeWithOffset: (value: unknown) => Date | undefined;
/**
* @internal
*
* Parses a value into a Date. Returns undefined if the input is null or
* undefined, throws an error if the input is not a string that can be parsed
* as an RFC 7231 date.
*
* Input strings must conform to RFC7231 section 7.1.1.1. Fractional seconds are supported.
*
* RFC 850 and unix asctime formats are also accepted.
* todo: practically speaking, are RFC 850 and asctime even used anymore?
* todo: can we remove those parts?
*
* @see {@link https://datatracker.ietf.org/doc/html/rfc7231.html#section-7.1.1.1}
*
* @param value - the value to parse.
* @returns a Date or undefined.
*/
export declare const _parseRfc7231DateTime: (value: unknown) => Date | undefined;