Files
klz-cables.com/.pnpm-store/v10/files/54/94679a9733baefeb70eb2e874b98fe6a1ee95fb511ccf4645e0a7ffa9afb5f4a7489cada139a2952ba053dc6b455d2aa8a659e90201f436a2cc7a5ef8d6ac4
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

15 lines
619 B
Plaintext

import type { I18n, I18nClient } from '@payloadcms/translations';
export type FormatDateArgs = {
date: Date | number | string | undefined;
i18n: I18n<unknown, unknown> | I18nClient<unknown>;
pattern: string;
timezone?: string;
};
export declare const formatDate: ({ date, i18n, pattern, timezone }: FormatDateArgs) => string;
type FormatTimeToNowArgs = {
date: Date | number | string | undefined;
i18n: I18n<unknown, unknown> | I18nClient<unknown>;
};
export declare const formatTimeToNow: ({ date, i18n }: FormatTimeToNowArgs) => string;
export {};
//# sourceMappingURL=formatDateTitle.d.ts.map