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>
17 lines
579 B
Text
17 lines
579 B
Text
import type { TZDate } from "./index.ts";
|
|
|
|
/**
|
|
* Time zone date class. It overrides original Date functions making them
|
|
* to perform all the calculations in the given time zone.
|
|
*
|
|
* It also provides new functions useful when working with time zones.
|
|
*
|
|
* Combined with date-fns, it allows using the class the same way as
|
|
* the original date class.
|
|
*
|
|
* This minimal version provides complete functionality required for date-fns
|
|
* and excludes build-size-heavy formatter functions.
|
|
*
|
|
* For the complete version, see `TZDate`.
|
|
*/
|
|
export const TZDateMini: typeof TZDate;
|