Files
klz-cables.com/.pnpm-store/v10/files/58/3208348d30f1ec63ba2aae43003b28c301fedcc9d380f1fbd3959cc975b125a275111c259fde0071da503e43fed7b490accf32ac7aa525cfe20324b0d9a2a9
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

18 lines
579 B
Plaintext

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;